diff --git a/NEWS b/NEWS index 063d1a7..da8b3ab 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ rust2rpm +Version 24.4.2 +============== + +This release fixes a mismatch between the dependencies specified in setup.cfg and +requirements.txt. + Version 24.4.1 ============== diff --git a/rust2rpm/__init__.py b/rust2rpm/__init__.py index a08dc12..add106d 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.4.1" +__version__ = "24.4.2" TARGET_ARCHES = [ "x86_64", diff --git a/setup.cfg b/setup.cfg index 6183ede..ad809a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ classifiers = include_package_data = True packages = rust2rpm install_requires = - cargo2rpm>=0.1.2 + cargo2rpm>=0.1.8 jinja2 pyparsing requests