diff --git a/.bumpversion.cfg b/.bumpversion.cfg index da0aa54b..d7bf0ea7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.5.1 +current_version = 1.5.2 message = release: {new_version} [bumpversion:file:setup.cfg] diff --git a/CHANGELOG.md b/CHANGELOG.md index ac9f4452..24deab1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.5.2 (2022-09-19) ### Fixed - Fix regression in `dylib` build artifacts not being found since 1.5.0. [#290](https://github.com/PyO3/setuptools-rust/pull/290) - Fix regression in sdist missing examples and other supplementary files since 1.5.0. [#291](https://github.com/PyO3/setuptools-rust/pull/291) diff --git a/setup.cfg b/setup.cfg index 18b35046..291fdd59 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = setuptools-rust -version = 1.5.1 +version = 1.5.2 author = Nikolay Kim author_email = fafhrd91@gmail.com license = MIT diff --git a/setuptools_rust/version.py b/setuptools_rust/version.py index 9d6633f7..5c2c6672 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.5.1" +__version__ = version = "1.5.2" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )