Skip to content

Commit

Permalink
Merge pull request #132 from openlawlibrary/release/v0.4.1
Browse files Browse the repository at this point in the history
Release v0.4.1
  • Loading branch information
danixeee authored May 12, 2020
2 parents 9e8df45 + 2e03639 commit eb5405c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
Expand Down
2 changes: 1 addition & 1 deletion taf/keystore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit eb5405c

Please sign in to comment.