From a749639840ea8b2863875850886e5498b734da4a Mon Sep 17 00:00:00 2001 From: Matthias Valvekens Date: Wed, 13 Dec 2023 23:26:14 +0100 Subject: [PATCH] 0.26.3 release --- changelog.md | 11 +++++++++++ pyhanko_certvalidator/version.py | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 10cd68c..274376b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,16 @@ # changelog +## 0.26.3 + +- Bump `aiohttp` requirement to `>=3.8,<3.10`. +- Address two certificate fetching issues (see PR #13) + + - Tolerate CMS certificate-only message in response + without `Content-Type`. + - Deal with implicit reliance on order of certs when + processing such messages. + + ## 0.26.2 - Bump some dependency versions. diff --git a/pyhanko_certvalidator/version.py b/pyhanko_certvalidator/version.py index 26fc10a..23bdb17 100644 --- a/pyhanko_certvalidator/version.py +++ b/pyhanko_certvalidator/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -__version__ = '0.26.3-dev1' -__version_info__ = (0, 26, 3, 'dev1') +__version__ = '0.26.3' +__version_info__ = (0, 26, 3)