diff --git a/docs/installation.md b/docs/installation.md index 251fabf8d..5ed2bb1bb 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -11,6 +11,6 @@ Then, if you start the Python REPL and see the following: ```python >>> import narwhals >>> narwhals.__version__ -'1.0.6' +'1.1.0' ``` then installation worked correctly! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 627794cd7..c7bfedb50 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -46,7 +46,7 @@ from narwhals.utils import maybe_convert_dtypes from narwhals.utils import maybe_set_index -__version__ = "1.0.6" +__version__ = "1.1.0" __all__ = [ "selectors", diff --git a/pyproject.toml b/pyproject.toml index 8bcd7ef02..1a3aa8b75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "1.0.6" +version = "1.1.0" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]