Release 24.3.2
This commit is contained in:
parent
cf4ed29e5a
commit
bfe8c92989
2 changed files with 14 additions and 1 deletions
13
NEWS
13
NEWS
|
@ -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
|
||||
==============
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue