Release 24.0.2
This commit is contained in:
parent
4eb2d2bf5d
commit
15facc465b
2 changed files with 16 additions and 1 deletions
15
NEWS
15
NEWS
|
@ -1,5 +1,20 @@
|
||||||
rust2rpm
|
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
|
Version 24.0.1
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
|
@ -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.0.1"
|
__version__ = "24.0.2"
|
||||||
|
|
||||||
TARGET_ARCHES = [
|
TARGET_ARCHES = [
|
||||||
"x86_64",
|
"x86_64",
|
||||||
|
|
Loading…
Reference in a new issue