From 15facc465bcd09cafe99ec607e6689c30d307fb9 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Thu, 16 Feb 2023 22:10:10 +0100 Subject: [PATCH] Release 24.0.2 --- NEWS | 15 +++++++++++++++ rust2rpm/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5ab62a6..f56fcb0 100644 --- a/NEWS +++ b/NEWS @@ -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 ============== diff --git a/rust2rpm/__init__.py b/rust2rpm/__init__.py index 7c482e2..a368aa3 100644 --- a/rust2rpm/__init__.py +++ b/rust2rpm/__init__.py @@ -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",