From b6b1cc862177f97ae23d6f415c7f2ed33ff260c0 Mon Sep 17 00:00:00 2001 From: Yu Ming Zhu Date: Mar 22 2024 21:07:16 +0000 Subject: bump release - 0.5.0 --- diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6be07b1..ba9bfad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ Change Logs =========== -0.4.2 (2023-06-27) +0.5.0 (2024-03-25) +------------------ +* "tags_from" restriction per tag to limit the tags of a module build (Yuming Zhu) + +0.4.3 (2023-06-27) ------------------ * Use gssapi_login instead of krb_login for koji kerberos auth (Yuming Zhu) diff --git a/setup.py b/setup.py index 0c393c6..c474fcb 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ def get_long_description(): long_description += '\n\n' + f.read() return long_description + setup_py_path = os.path.dirname(os.path.realpath(__file__)) requirements_file = os.path.join(setup_py_path, 'requirements.txt') test_requirements_file = os.path.join(setup_py_path, 'test-requirements.txt') @@ -40,7 +41,7 @@ setup( name='ursa-major', description="A utility for managing module tags in Koji's tag inheritance", long_description=get_long_description(), - version='0.4.3', + version='0.5.0', classifiers=[ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.6',