diff --git a/docs/installation.md b/docs/installation.md index 6da80b129..e9b13d483 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.4' +'1.13.5' ``` If you see the version number, then the installation was successful! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index a16e1a9e7..e69db9dae 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -68,7 +68,7 @@ from narwhals.utils import maybe_reset_index from narwhals.utils import maybe_set_index -__version__ = "1.13.4" +__version__ = "1.13.5" __all__ = [ "dependencies", diff --git a/pyproject.toml b/pyproject.toml index 9f20bcf7e..cbd4593a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.13.4" +version = "1.13.5" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]