From 67c88424fc79572438abf053867e02d53f087479 Mon Sep 17 00:00:00 2001 From: Marco Edward Gorelli Date: Mon, 10 Jun 2024 19:05:24 +0100 Subject: [PATCH] V0.9.4 (#279) * Bump version to 0.9.3 * Bump version to 0.9.4 --- docs/installation.md | 2 +- narwhals/__init__.py | 2 +- pyproject.toml | 2 +- utils/bump_version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 7f0a2c9e5..a94f95963 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 1ec14f300..0d1068d28 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -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", diff --git a/pyproject.toml b/pyproject.toml index 15e836877..1b9846033 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "0.9.2" +version = "0.9.4" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ] diff --git a/utils/bump_version.py b/utils/bump_version.py index 2abb50b32..677ff33e0 100644 --- a/utils/bump_version.py +++ b/utils/bump_version.py @@ -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"])