File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
9
## 1.3.1
4
10
5
11
* is_issued_by now raises MissingCertProperty if no hash algorithm found. Before it would silently return False
Original file line number Diff line number Diff line change 1
1
import sys
2
2
3
- __version__ = "1.3 .0"
3
+ __version__ = "1.4 .0"
4
4
__is_py3__ = sys .version_info >= (3 , 0 )
Original file line number Diff line number Diff line change 42
42
"Programming Language :: Python :: 3.10" ,
43
43
"Programming Language :: Python :: 3.11" ,
44
44
"Programming Language :: Python :: 3.12" ,
45
+ "Programming Language :: Python :: 3.13" ,
45
46
"License :: OSI Approved :: MIT License" ,
46
47
"Operating System :: OS Independent" ,
47
48
],
You can’t perform that action at this time.
0 commit comments