Release 24.3.1

This commit is contained in:
Fabio Valentini 2023-04-19 19:21:23 +02:00
parent b67933d097
commit 30185b6c8d
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.1
==============
This release contains only two small fixes:
- Fixed a subtle bug in `rust2rpm.conf` file validation. The "default" feature
was only accepted as a feature name if it was explicitly listed in the crate
metadata, but the "default" feature is always implicitly defined and is always
a valid feature name.
- Added `riscv64` to the list of `target_arch` values that are considered
"supported" when auto-generating `Cargo.toml` patches to remove "foreign"
dependencies.
Version 24.3.0
==============

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.0"
__version__ = "24.3.1"
TARGET_ARCHES = [
"x86_64",