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