Release 24.3.2

This commit is contained in:
Fabio Valentini 2023-05-17 20:04:38 +02:00
parent cf4ed29e5a
commit bfe8c92989
No known key found for this signature in database
GPG key ID: 5AC5F572E5D410AF
2 changed files with 14 additions and 1 deletions

13
NEWS
View file

@ -1,5 +1,18 @@
rust2rpm
Version 24.3.2
==============
This release contains only two small fixes:
- Fixed a subtle bug in the logic for parsing `rust2rpm.conf` files. The
"default" feature was always accepted as a feature name since v24.3.1,
but reading the `lib+default.requires` setting failed and always returned
an empty list instead of the actual value.
- Store downloaded `.crate` files *before* attempting to parse `Cargo.toml`.
Previously, storing the `.crate` file in the current directory was cancelled
if `Cargo.toml` could not be parsed.
Version 24.3.1
==============

View file

@ -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__ = "24.3.1"
__version__ = "24.3.2"
TARGET_ARCHES = [
"x86_64",