Skip to content

Commit

Permalink
V0.9.4 (#279)
Browse files Browse the repository at this point in the history
* Bump version to 0.9.3

* Bump version to 0.9.4
  • Loading branch information
MarcoGorelli authored Jun 10, 2024
1 parent 3936902 commit 67c8842
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.2'
'0.9.4'
```
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.2"
__version__ = "0.9.4"

__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.2"
version = "0.9.4"
authors = [
{ name="Marco Gorelli", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion utils/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@

subprocess.run(["git", "commit", "-a", "-m", f"Bump version to {version}"])
subprocess.run(["git", "tag", "-a", version, "-m", version])
subprocess.run(["git", "push", "--follow-tags"])
subprocess.run(["git", "push", "origin", "HEAD", "--follow-tags"])

0 comments on commit 67c8842

Please sign in to comment.