From 484c599e33992dbf0678b79f895832058b7ddefd Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Tue, 4 Jun 2024 11:00:46 +0100 Subject: [PATCH] Bump version to 0.9.2 --- docs/installation.md | 2 +- narwhals/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index c690a72a8..7f0a2c9e5 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.1' +'0.9.2' ``` then installation worked correctly! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 675b5f720..7e4700d48 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -32,7 +32,7 @@ from narwhals.utils import maybe_align_index from narwhals.utils import maybe_set_index -__version__ = "0.9.1" +__version__ = "0.9.2" __all__ = [ "selectors", diff --git a/pyproject.toml b/pyproject.toml index 11860c390..15e836877 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "0.9.1" +version = "0.9.2" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]