Skip to content

Commit 7a19b37

Browse files
committed
Update version
1 parent 54d5611 commit 7a19b37

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.4.0
4+
5+
* Extended support to python 3.13
6+
* Cert.not_valid_before returns UTC datetime if cryptography version >= 42
7+
* Cert.not_valid_after returns UTC datetime if cryptography version >= 42
8+
39
## 1.3.1
410

511
* is_issued_by now raises MissingCertProperty if no hash algorithm found. Before it would silently return False

cert_chain_resolver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import sys
22

3-
__version__ = "1.3.0"
3+
__version__ = "1.4.0"
44
__is_py3__ = sys.version_info >= (3, 0)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.10",
4343
"Programming Language :: Python :: 3.11",
4444
"Programming Language :: Python :: 3.12",
45+
"Programming Language :: Python :: 3.13",
4546
"License :: OSI Approved :: MIT License",
4647
"Operating System :: OS Independent",
4748
],

0 commit comments

Comments
 (0)