Skip to content

Commit

Permalink
release: 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Feb 24, 2024
1 parent 9fa089a commit 2e4ed40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 1.8.1
current_version = 1.9.0
message = release: {new_version}

[bumpversion:file:pyproject.toml]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 1.9.0 (2024-02-24)
### Changed
- Deprecate `py_limited_api` option to `RustExtension` in favour of always using `"auto"` to configure this from `bdist_wheel`. [#410](https://github.com/PyO3/setuptools-rust/pull/410)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "setuptools-rust"
version = "1.8.1"
version = "1.9.0"
description = "Setuptools Rust extension plugin"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion setuptools_rust/version.py
@@ -1,4 +1,4 @@
__version__ = version = "1.8.1"
__version__ = version = "1.9.0"
__version_tuple__ = version_tuple = tuple(
map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
)

0 comments on commit 2e4ed40

Please sign in to comment.