From 191ca49258f7e29590d26799c3c7bcc1ffc5baee Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:48:54 +0300 Subject: [PATCH] Bump version to 0.7.6 --- .pre-commit-config.yaml | 4 ++-- docs/installation.md | 2 +- docs/roadmap.md | 2 +- narwhals/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 16544a6f7..0cf1747a0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: 'v0.3.4' + rev: 'v0.3.5' hooks: # Run the formatter. - id: ruff-format @@ -15,7 +15,7 @@ repos: additional_dependencies: ['polars==0.20.10', 'pytest==8.0.1'] exclude: utils|tpch - repo: https://github.com/codespell-project/codespell - rev: 'v2.2.5' + rev: 'v2.2.6' hooks: - id: codespell files: \.(py|rst|md)$ diff --git a/docs/installation.md b/docs/installation.md index 7259f590f..e09441ed0 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.5' +'0.7.6' ``` then installation worked correctly! diff --git a/docs/roadmap.md b/docs/roadmap.md index 6d8fc1913..af09b6956 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -1,6 +1,6 @@ # Roadmap -Where do we go from here? What are the project's priorties? +Where do we go from here? What are the project's priorities? ## 1. Tests and docs coverage diff --git a/narwhals/__init__.py b/narwhals/__init__.py index c1285fccd..88ad70908 100644 --- a/narwhals/__init__.py +++ b/narwhals/__init__.py @@ -15,7 +15,7 @@ from narwhals.translate import from_native from narwhals.translate import to_native -__version__ = "0.7.5" +__version__ = "0.7.6" __all__ = [ "concat", diff --git a/pyproject.toml b/pyproject.toml index bc4ba4303..ee4680014 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "narwhals" -version = "0.7.5" +version = "0.7.6" authors = [ { name="Marco Gorelli", email="33491632+MarcoGorelli@users.noreply.github.com" }, ]