From bea6496dc2e7b80effa4393f360d3dd48f7d1955 Mon Sep 17 00:00:00 2001 From: Santiago Torres Date: Fri, 10 Jan 2020 15:41:17 -0500 Subject: [PATCH] release: 0.12.2 Signed-off-by: Santiago Torres --- docs/CHANGELOG.md | 6 ++++++ setup.py | 2 +- tuf/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f9862ad3ef..a10d63f5bf 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.12.2 +* Fix incorrect threshold signature computation (#974) +* Drop support for python 3.4 (#966) +* Improve documentation (#970, #960, #962, #961, 972) +* Improve test suite and tutorial scripts (#775) + ## v0.12.1 * Relax spec version format check for backwards compatibility (#950) * Update project metadata (#937, #939, #944, #947, #948, #953, #954) diff --git a/setup.py b/setup.py index 55bdbe75ba..b3d6099d56 100755 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ setup( name = 'tuf', - version = '0.12.1', # If updating version, also update it in tuf/__init__.py + version = '0.12.2', # 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 68fd201ab6..aa951e8e3a 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.12.1" +__version__ = "0.12.2" # This reference implementation produces metadata intended to conform to # version 1.0.0 of the TUF specification, and is expected to consume metadata