Release 24.2.0
This commit is contained in:
parent
26aa680301
commit
6f40c1a026
2 changed files with 11 additions and 1 deletions
10
NEWS
10
NEWS
|
@ -1,5 +1,15 @@
|
||||||
rust2rpm
|
rust2rpm
|
||||||
|
|
||||||
|
Version 24.2.0
|
||||||
|
==============
|
||||||
|
|
||||||
|
This version adds a new `--compat` CLI flag to rust2rpm. It automatically
|
||||||
|
sets the package version suffix based on SemVer compatibility rules.
|
||||||
|
rust2rpm knows which suffix compat packages need based on the version that
|
||||||
|
is passed, so there is no need for the user to guess and pass it manually.
|
||||||
|
The old `--suffix [SUFFIX]` CLI argument is now deprecated in favor of using
|
||||||
|
`--compat`.
|
||||||
|
|
||||||
Version 24.1.0
|
Version 24.1.0
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
|
@ -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.1.0"
|
__version__ = "24.2.0"
|
||||||
|
|
||||||
TARGET_ARCHES = [
|
TARGET_ARCHES = [
|
||||||
"x86_64",
|
"x86_64",
|
||||||
|
|
Loading…
Reference in a new issue