diff --git a/docs/source/index.rst b/docs/source/index.rst index aecdfc3..6c5cd9a 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -122,6 +122,28 @@ Change history .. towncrier release notes start +Trustme 1.2.0 (2024-10-07) +-------------------------- + +Features +~~~~~~~~ + +- Add support for PyPy 3.10, Python 3.12 and Python 3.13. (`#609 `__, `#664 `__) +- Allow setting of cert's notBefore attribute (`#628 `__) + + +Bugfixes +~~~~~~~~ + +- Add the Authority Key Identifier extension to child CA certificates. (`#642 `__) + + +Deprecations and Removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Remove support for Python 3.7, Python 3.8 and PyPy 3.9. (`#609 `__, `#664 `__) + + Trustme 1.1.0 (2023-07-10) -------------------------- diff --git a/newsfragments/609.feature.rst b/newsfragments/609.feature.rst deleted file mode 100644 index b3261ed..0000000 --- a/newsfragments/609.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add support for PyPy 3.10 and Python 3.12. diff --git a/newsfragments/609.removal.rst b/newsfragments/609.removal.rst deleted file mode 100644 index e08df4c..0000000 --- a/newsfragments/609.removal.rst +++ /dev/null @@ -1 +0,0 @@ -Remove support for Python 3.7. diff --git a/newsfragments/620.feature.rst b/newsfragments/620.feature.rst deleted file mode 100644 index f1f7407..0000000 --- a/newsfragments/620.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Set default expiry date to 3000-01-01 instead of 2038-01-01 to improve build reproducibility. diff --git a/newsfragments/642.bugfix.rst b/newsfragments/642.bugfix.rst deleted file mode 100644 index 9d75e7a..0000000 --- a/newsfragments/642.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Add the Authority Key Identifier extension to child CA certificates. diff --git a/src/trustme/_version.py b/src/trustme/_version.py index f1b1f77..c68196d 100644 --- a/src/trustme/_version.py +++ b/src/trustme/_version.py @@ -1 +1 @@ -__version__ = "1.1.0+dev" +__version__ = "1.2.0"