From be5b992f241e3b08395983f9cfd3f610aaf8cf46 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 8 Aug 2023 14:16:51 +0200 Subject: [PATCH] Release 24.4.0 --- NEWS | 12 ++++++++++++ rust2rpm/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index b1486ff..8b62c24 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,17 @@ rust2rpm +Version 24.4.0 +============== + +This release contains some backwards compatible changes to rendered spec files +for packages that ship binaries. Notably, the new `%cargo_license` and +`%cargo_license_summary` macros are now injected automatically, based on current +best practices for Rust packages in Fedora. + +Additionally, there is a small fix for the automatic detection and injection of +required feature flags for binaries. If the required features are already part +of the default feature set, they are no longer added. + Version 24.3.3 ============== diff --git a/rust2rpm/__init__.py b/rust2rpm/__init__.py index 80f2abd..153dd44 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.3.3" +__version__ = "24.4.0" TARGET_ARCHES = [ "x86_64",