Release 24.3.1
This commit is contained in:
parent
b67933d097
commit
30185b6c8d
2 changed files with 14 additions and 1 deletions
13
NEWS
13
NEWS
|
@ -1,5 +1,18 @@
|
||||||
rust2rpm
|
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
|
Version 24.3.0
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ from rust2rpm import licensing
|
||||||
# release of the last minor version.
|
# release of the last minor version.
|
||||||
#
|
#
|
||||||
# Only the major version is included in the header of generated spec files.
|
# Only the major version is included in the header of generated spec files.
|
||||||
__version__ = "24.3.0"
|
__version__ = "24.3.1"
|
||||||
|
|
||||||
TARGET_ARCHES = [
|
TARGET_ARCHES = [
|
||||||
"x86_64",
|
"x86_64",
|
||||||
|
|
Loading…
Reference in a new issue