diff --git a/docs/installation.md b/docs/installation.md index 9cd3a8e9e..7239f6b90 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -30,7 +30,7 @@ To verify the installation, start the Python REPL and execute: ```python >>> import narwhals >>> narwhals.__version__ -'1.15.1' +'1.15.2' ``` If you see the version number, then the installation was successful! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 7b2b017ba..bf8af9801 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -71,7 +71,7 @@ from narwhals.utils import maybe_reset_index from narwhals.utils import maybe_set_index -__version__ = "1.15.1" +__version__ = "1.15.2" __all__ = [ "Array", diff --git a/pyproject.toml b/pyproject.toml index be0570793..281884d8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.15.1" +version = "1.15.2" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]