From 8aa4937e57b562532b0a7d99fba57860effc4dfd Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Thu, 28 Nov 2024 19:17:27 +0000 Subject: [PATCH] release: Bump version to 1.14.3 --- 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 d395a28b3..25c014ba6 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.14.2' +'1.14.3' ``` If you see the version number, then the installation was successful! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index b8b02e8c3..ca299e257 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -70,7 +70,7 @@ from narwhals.utils import maybe_reset_index from narwhals.utils import maybe_set_index -__version__ = "1.14.2" +__version__ = "1.14.3" __all__ = [ "Array", diff --git a/pyproject.toml b/pyproject.toml index 29ead1613..3e43940c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.14.2" +version = "1.14.3" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]