From ce2514a88ef56b9af168d8f5475a6ab7c5c2f10a Mon Sep 17 00:00:00 2001 From: Daniel Elero Date: Tue, 12 May 2020 14:07:26 +0200 Subject: [PATCH 1/3] Bump version to 0.4.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d0360ebd..7efad236 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup PACKAGE_NAME = "taf" -VERSION = "0.4.0" +VERSION = "0.4.1" AUTHOR = "Open Law Library" AUTHOR_EMAIL = "info@openlawlib.org" DESCRIPTION = "Implementation of archival authentication" From c1f82a48bc550b14c1121d80c89964de2dede145 Mon Sep 17 00:00:00 2001 From: Daniel Elero Date: Tue, 12 May 2020 14:09:18 +0200 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17bef046..d72abf4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,15 +11,22 @@ and this project adheres to [Semantic Versioning][semver]. ### Changed -- Error handling and logging improvements ([131]) - ### Fixed -[131]: https://github.com/openlawlibrary/taf/pull/131 + +## [0.4.1] - 05/12/2020 + +### Added + +### Changed + +- Error handling and logging improvements ([131]) ### Fixed +[131]: https://github.com/openlawlibrary/taf/pull/131 + ## [0.4.0] - 05/01/2020 ### Added @@ -231,7 +238,8 @@ and this project adheres to [Semantic Versioning][semver]. [keepachangelog]: https://keepachangelog.com/en/1.0.0/ [semver]: https://semver.org/spec/v2.0.0.html -[Unreleased]: https://github.com/openlawlibrary/pygls/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/openlawlibrary/pygls/compare/v0.4.1...HEAD +[0.4.1]: https://github.com/openlawlibrary/pygls/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/openlawlibrary/pygls/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/openlawlibrary/pygls/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/openlawlibrary/taf/compare/v0.2.2...v0.3.0 From 2e0363911b42e3d8d8aed69a13e1c7275fa132f0 Mon Sep 17 00:00:00 2001 From: Daniel Elero Date: Tue, 12 May 2020 14:20:07 +0200 Subject: [PATCH 3/3] Fix flake8 error --- taf/keystore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taf/keystore.py b/taf/keystore.py index f2ae623d..9682452a 100644 --- a/taf/keystore.py +++ b/taf/keystore.py @@ -67,7 +67,7 @@ def load_tuf_private_key(key_str, key_name, scheme=DEFAULT_RSA_SIGNATURE_SCHEME) def new_public_key_cmd_prompt(scheme): def _enter_and_check_key(scheme): - pem = getpass(f"Enter public key without its header and footer\n") + pem = getpass("Enter public key without its header and footer\n") pem = _from_public_pem(pem) try: key = import_rsakey_from_pem(pem, scheme)