Skip to content

Commit

Permalink
Bump version to 0.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jun 16, 2024
1 parent 2c29d05 commit fa3f0bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Then, if you start the Python REPL and see the following:
```python
>>> import narwhals
>>> narwhals.__version__
'0.9.10'
'0.9.11'
```
then installation worked correctly!
2 changes: 1 addition & 1 deletion narwhals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from narwhals.utils import maybe_convert_dtypes
from narwhals.utils import maybe_set_index

__version__ = "0.9.10"
__version__ = "0.9.11"

This comment has been minimized.

Copy link
@FBruzzesi

FBruzzesi Jun 17, 2024

Member

We could make this dynamic using metadata:

from importlib import metadata

__version__ = metadata.version(__name__)

Just a thought, if it's not updated manually.

cc: @MarcoGorelli

This comment has been minimized.

Copy link
@MarcoGorelli

MarcoGorelli Jun 17, 2024

Author Member

I just update it using utils/bump_version.py

to make a release, I do:

python utils/bump_version patch

repacing patch with minor or major if necessary

want to do the next one?

This comment has been minimized.

Copy link
@FBruzzesi

FBruzzesi Jun 17, 2024

Member

Oh thanks for pointing that out! Quite neat script 👌


__all__ = [
"selectors",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "narwhals"
version = "0.9.10"
version = "0.9.11"
authors = [
{ name="Marco Gorelli", email="[email protected]" },
]
Expand Down

0 comments on commit fa3f0bd

Please sign in to comment.