From ce6e74c46f5b01eeb8d98e101a0bc3f805638741 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Sun, 14 Aug 2022 14:00:08 +0100 Subject: [PATCH] release: 1.5.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- setup.cfg | 2 +- setuptools_rust/version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 568eff5e..da0aa54b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = False -current_version = 1.5.0 +current_version = 1.5.1 message = release: {new_version} [bumpversion:file:setup.cfg] diff --git a/CHANGELOG.md b/CHANGELOG.md index ae03a73e..51d5d5d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.5.1 (2022-08-14) ### Fixed - Fix regression in `get_lib_name` crashing since 1.5.0. [#280](https://github.com/PyO3/setuptools-rust/pull/280) - Fix regression in `Binding.Exec` builds with multiple executables not finding built executables since 1.5.0. [#283](https://github.com/PyO3/setuptools-rust/pull/283) diff --git a/setup.cfg b/setup.cfg index c6429dff..18b35046 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = setuptools-rust -version = 1.5.0 +version = 1.5.1 author = Nikolay Kim author_email = fafhrd91@gmail.com license = MIT diff --git a/setuptools_rust/version.py b/setuptools_rust/version.py index 4fc83c95..9d6633f7 100644 --- a/setuptools_rust/version.py +++ b/setuptools_rust/version.py @@ -1,4 +1,4 @@ -__version__ = version = "1.5.0" +__version__ = version = "1.5.1" __version_tuple__ = version_tuple = tuple( map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split("."))) )