From 2b98b0a43b6c7ca41746fef5d93efc8dc5139c68 Mon Sep 17 00:00:00 2001 From: Matthias Valvekens Date: Fri, 6 Oct 2023 21:42:48 +0200 Subject: [PATCH] 0.25.0 release --- changelog.md | 5 +++++ pyhanko_certvalidator/version.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 201e36a..b82395e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,11 @@ # changelog +## 0.25.0 + + - Introduce a more precise error type to signal stale revocation + information (see PR #11) + ## 0.24.1 - Ignore content types altogether when fetching certificates diff --git a/pyhanko_certvalidator/version.py b/pyhanko_certvalidator/version.py index d89b6f0..663c30f 100644 --- a/pyhanko_certvalidator/version.py +++ b/pyhanko_certvalidator/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -__version__ = '0.25.0-dev1' -__version_info__ = (0, 25, 0, 'dev1') +__version__ = '0.25.0' +__version_info__ = (0, 25, 0)