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",