From 33247b959e713f9f5e7e3ca41d6b085179dee571 Mon Sep 17 00:00:00 2001 From: Renata Date: Fri, 1 Nov 2024 06:50:44 -0400 Subject: [PATCH] chore: release 0.32.1 --- CHANGELOG.md | 20 +++++++++++++++++--- setup.py | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d67ecfe..eb8732e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,19 @@ and this project adheres to [Semantic Versioning][semver]. ### Fixed +## [0.32.1] - 11/01/2024 + +### Added + +### Changed + +### Fixed + +- Fix two git methods where `GitError` was not being instantiated correctly ([562]) +- Fix determination of auth commits to be validated when starting the update from the beginning ([562]) + +[562]: https://github.com/openlawlibrary/taf/pull/562 + ## [0.32.0] - 10/23/2024 ### Added @@ -23,8 +36,8 @@ and this project adheres to [Semantic Versioning][semver]. ### Fixed -- Fix specification of pygit2 version depending on the Python version [(558)] -- Fix validation and listing targets of an auth repo that does not contain `mirrors.json` [(558)] +- Fix specification of pygit2 version depending on the Python version ([558]) +- Fix validation and listing targets of an auth repo that does not contain `mirrors.json` ([558]) [558]: https://github.com/openlawlibrary/taf/pull/558 @@ -1319,7 +1332,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.31.2...HEAD +[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.32.1...HEAD +[0.32.1]: https://github.com/openlawlibrary/taf/compare/v0.32.0...v0.32.1 [0.32.0]: https://github.com/openlawlibrary/taf/compare/v0.31.2...v0.32.0 [0.31.2]: https://github.com/openlawlibrary/taf/compare/v0.31.1...v0.31.2 [0.31.1]: https://github.com/openlawlibrary/taf/compare/v0.31.0...v0.31.1 diff --git a/setup.py b/setup.py index 4ad08c07..03ed98a9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup PACKAGE_NAME = "taf" -VERSION = "0.32.0" +VERSION = "0.32.1" AUTHOR = "Open Law Library" AUTHOR_EMAIL = "info@openlawlib.org" DESCRIPTION = "Implementation of archival authentication"