Skip to content

Commit fd4e034

Browse files
authored
Release 1.0.0
1 parent f3ed370 commit fd4e034

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

docs/source/index.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,23 @@ Change history
122122

123123
.. towncrier release notes start
124124
125+
Trustme 1.0.0 (2023-04-24)
126+
------------------------------
127+
128+
Features
129+
~~~~~~~~
130+
131+
- Support for ECDSA keys in certificates and use them by default. The type of key used for certificates can be controlled by the ``key_type`` parameter on the multiple methods that generate certificates. ECDSA certificates as they can be generated significantly faster. (`#559 <https://github.com/python-trio/trustme/issues/559>`__)
132+
- Support for Python 3.10 and 3.11 (`#372 <https://github.com/python-trio/trustme/pull/372>`__, `574 <https://github.com/python-trio/trustme/pull/574>`__)
133+
134+
135+
136+
Deprecations and Removals
137+
~~~~~~~~~~~~~~~~~~~~~~~~~
138+
139+
- Remove support for Python 2. trustme now requires Python>=3.7 (CPython or PyPy). (`#346 <https://github.com/python-trio/trustme/issues/346>`__)
140+
141+
125142
Trustme 0.9.0 (2021-08-12)
126143
--------------------------
127144

newsfragments/346.removal.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/559.ecdsa.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"Programming Language :: Python :: 3.8",
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
3940
"Topic :: System :: Networking",
4041
"Topic :: Security :: Cryptography",
4142
"Topic :: Software Development :: Testing",

src/trustme/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.0+dev"
1+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)