Skip to content

Commit

Permalink
release: 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Aug 4, 2024
1 parent 4b3d0c2 commit df30297
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 1.10.0
current_version = 1.10.1
message = release: {new_version}

[bumpversion:file:pyproject.toml]
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

### Unreleased

## 1.10.1 (2024-08-04)
### Fixed
- Fix regression in 1.10.0 where editable builds would be built in release mode

## 1.10.0 (2024-07-01)
## 1.10.0 (2024-08-03)
### Packaging
- Extend macOS build flags to iOS, tvOS and watchOS. [#436](https://github.com/PyO3/setuptools-rust/pull/436)
- Support Python 3.13. [#446](https://github.com/PyO3/setuptools-rust/pull/446)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "setuptools-rust"
version = "1.10.0"
version = "1.10.1"
description = "Setuptools Rust extension plugin"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion setuptools_rust/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = version = "1.10.0"
__version__ = version = "1.10.1"
__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 df30297

Please sign in to comment.