From 9dedbb2c43a307ed885ee6da9b3f69c93a55b23c Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sun, 3 Nov 2024 14:43:11 +0000 Subject: [PATCH] release: Bump version to 1.13.1 --- 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 57925eca6..b42198a73 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -29,7 +29,7 @@ To verify the installation, start the Python REPL and execute: ```python >>> import narwhals >>> narwhals.__version__ -'1.13.0' +'1.13.1' ``` If you see the version number, then the installation was successful! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 213495253..2c98c943a 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -67,7 +67,7 @@ from narwhals.utils import maybe_reset_index from narwhals.utils import maybe_set_index -__version__ = "1.13.0" +__version__ = "1.13.1" __all__ = [ "dependencies", diff --git a/pyproject.toml b/pyproject.toml index a3f266fc3..885e84dd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.13.0" +version = "1.13.1" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]