Skip to content

Commit

Permalink
Bump version to 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Apr 2, 2024
1 parent 6a6725f commit 191ca49
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)$
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
2 changes: 1 addition & 1 deletion docs/roadmap.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion narwhals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "narwhals"
version = "0.7.5"
version = "0.7.6"
authors = [
{ name="Marco Gorelli", email="[email protected]" },
]
Expand Down

0 comments on commit 191ca49

Please sign in to comment.