From 3a87b2bcd1ab9f94fb3861f81e550f8cc14d7b8b Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Mon, 6 Sep 2021 13:55:52 +0100 Subject: [PATCH] Prepare v0.18.1 The v0.18.0 release was made with the changes from #1566, resulting in a release with sources which don't match the git tag. Rectify this with a brown bag point release. Signed-off-by: Joshua Lock --- docs/CHANGELOG.md | 5 +++++ setup.py | 2 +- tuf/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4d0915f96e..c476c65525 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.18.1 + +### Changed +* Update setup.cfg to not build universal wheels (#1566) + ## v0.18.0 0.18 is a big release with 3 main themes: diff --git a/setup.py b/setup.py index 1477205c1c..3fb92ce661 100755 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ setup( name = 'tuf', - version = '0.18.0', # If updating version, also update it in tuf/__init__.py + version = '0.18.1', # If updating version, also update it in tuf/__init__.py description = 'A secure updater framework for Python', long_description = long_description, long_description_content_type='text/markdown', diff --git a/tuf/__init__.py b/tuf/__init__.py index cc487e44b0..db66a2572b 100755 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -2,7 +2,7 @@ # setup.py has it hard-coded separately. # Currently, when the version is changed, it must be set in both locations. # TODO: Single-source the version number. -__version__ = "0.18.0" +__version__ = "0.18.1" # This reference implementation produces metadata intended to conform to # version 1.0.0 of the TUF specification, and is expected to consume metadata