From 920eac623646a373e178479a09b3aa9bc0088bdb Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sun, 7 Apr 2024 16:41:11 +0100 Subject: [PATCH] Bump version to 0.7.9 --- docs/api-reference/series_dt.md | 9 +++++++++ docs/installation.md | 2 +- narwhals/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 docs/api-reference/series_dt.md diff --git a/docs/api-reference/series_dt.md b/docs/api-reference/series_dt.md new file mode 100644 index 000000000..cb725023e --- /dev/null +++ b/docs/api-reference/series_dt.md @@ -0,0 +1,9 @@ +# `narwhals.Series.str` + +::: narwhals.series.SeriesStringNamespace + handler: python + options: + members: + - ends_with + show_source: false + show_bases: false diff --git a/docs/installation.md b/docs/installation.md index e98b01502..781ee8979 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 -'0.7.8' +'0.7.9' ``` then installation worked correctly! diff --git a/narwhals/__init__.py b/narwhals/__init__.py index 53fa448d2..8d8a58beb 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -27,7 +27,7 @@ from narwhals.translate import from_native from narwhals.translate import to_native -__version__ = "0.7.8" +__version__ = "0.7.9" __all__ = [ "concat", diff --git a/pyproject.toml b/pyproject.toml index 88360cce7..5183f6265 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "0.7.8" +version = "0.7.9" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]