From a1a44568ab8d523fa35916c300e98157b9ff4595 Mon Sep 17 00:00:00 2001 From: Magdalena Kowalczuk <74981211+anopsy@users.noreply.github.com> Date: Sat, 7 Dec 2024 16:01:20 +0100 Subject: [PATCH] release: Bump version to 1.16.0 (#1534) --- 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 7239f6b90..e5e009ac9 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.2' +'1.16.0' ``` If you see the version number, then the installation was successful! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 08ea8b926..1885a9153 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -72,7 +72,7 @@ from narwhals.utils import maybe_reset_index from narwhals.utils import maybe_set_index -__version__ = "1.15.2" +__version__ = "1.16.0" __all__ = [ "Array", diff --git a/pyproject.toml b/pyproject.toml index f48f9ce69..b97725f7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.15.2" +version = "1.16.0" authors = [ { name = "Marco Gorelli", email = "33491632+MarcoGorelli@users.noreply.github.com" }, ]