From 475c116af4c91dc4f5f6654d283402fe8ad2613a Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Wed, 18 Oct 2023 11:35:58 +0200 Subject: [PATCH] Release 25.0.1 --- CHANGELOG.md | 11 +++++++++++ rust2rpm/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 500439c..be4da16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +Version 25.0.1 +============== + +This release fixes two small issues that were introduced in new features that +were added in version 25.0.0: + +- Using the new "partial version" / version requirement support in conjunction + with the `--compat` flag no longer crashes and now works as expected. +- Invalid TOML syntax in `rust2rpm.toml` configuration files no longer causes a + crash, and is handled gracefully instead. + Version 25.0.0 ============== diff --git a/rust2rpm/__init__.py b/rust2rpm/__init__.py index b3af0e8..df81c5c 100644 --- a/rust2rpm/__init__.py +++ b/rust2rpm/__init__.py @@ -10,7 +10,7 @@ from rust2rpm import licensing # release of the last minor version. # # Only the major version is included in the header of generated spec files. -__version__ = "25.0.0" +__version__ = "25.0.1" TARGET_ARCHES = [ "x86_64",