Skip to content

Commit

Permalink
Merge pull request #201 from openlawlibrary/release/0.13.4
Browse files Browse the repository at this point in the history
Relase 0.13.4
  • Loading branch information
tlewandowski18 authored Jan 20, 2022
2 parents ec5a3b3 + 117f775 commit 23a1a57
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog][keepachangelog],
and this project adheres to [Semantic Versioning][semver].



## [Unreleased]


Expand All @@ -18,6 +19,24 @@ and this project adheres to [Semantic Versioning][semver].
### Fixed




## [0.13.4] - 01/20/2022


### Added


### Changed

- Trim text read from the last_validated_commit file ([201])


### Fixed


[201]: https://github.com/openlawlibrary/taf/pull/201

## [0.13.3] - 11/18/2021


Expand Down Expand Up @@ -601,7 +620,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/taf/compare/v0.13.3...HEAD
[Unreleased]: https://github.com/openlawlibrary/taf/compare/v0.13.4...HEAD
[0.13.4]: https://github.com/openlawlibrary/taf/compare/v0.13.3...v0.13.4
[0.13.3]: https://github.com/openlawlibrary/taf/compare/v0.13.2...v0.13.3
[0.13.2]: https://github.com/openlawlibrary/taf/compare/v0.13.1...v0.13.2
[0.13.1]: https://github.com/openlawlibrary/taf/compare/v0.13.0...v0.13.1
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.13.3"
VERSION = "0.13.4"
AUTHOR = "Open Law Library"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
Expand Down
2 changes: 1 addition & 1 deletion taf/auth_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def last_validated_commit(self):
Return the last validated commit of the authentication repository
"""
try:
return Path(self.conf_dir, self.LAST_VALIDATED_FILENAME).read_text()
return Path(self.conf_dir, self.LAST_VALIDATED_FILENAME).read_text().strip()
except FileNotFoundError:
return None

Expand Down

0 comments on commit 23a1a57

Please sign in to comment.