Release 24.0.2

This commit is contained in:
Fabio Valentini 2023-02-16 22:10:10 +01:00
parent 4eb2d2bf5d
commit 15facc465b
No known key found for this signature in database
GPG key ID: 5AC5F572E5D410AF
2 changed files with 16 additions and 1 deletions

15
NEWS
View file

@ -1,5 +1,20 @@
rust2rpm
Version 24.0.2
==============
Changed:
- Rendered spec files now include a "FIXME" in the `%install` section for crates
that build shared libraries with a C ABI (i.e. crates with a `cdylib` binary
target).
Fixed:
- Crates that manually specify their crate type as "rlib" (which is equivalent
to the default "lib" crate type) are now detected as libraries correctly. This
fix requires bumping the dependency on cargo2rpm to >= 0.1.2.
Version 24.0.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.0.1"
__version__ = "24.0.2"
TARGET_ARCHES = [
"x86_64",