Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ works. It demonstrates a simple TLS server and client that connect to
each other using :mod:`trustme`\-generated certs.

This example requires `Trio <https://trio.readthedocs.io>`__ (``pip
install -upgrade trio``) and Python 3.10+. Note that while :mod:`trustme` is
install --upgrade trio``) and Python 3.10+. Note that while :mod:`trustme` is
maintained by the Trio project, :mod:`trustme` is happy to work with
any networking library.

Expand Down Expand Up @@ -122,6 +122,23 @@ Change history

.. towncrier release notes start

Trustme 1.3.0 (2026-08-05)
--------------------------

Features
~~~~~~~~

- Add a ``trustme`` console script entry point, so that trustme can be run
without ``python -m``, for example with ``uvx trustme``. (`#681 <https://github.com/python-trio/trustme/issues/681>`__)
- Add support for Python 3.14, including the free-threaded build. (`#690 <https://github.com/python-trio/trustme/issues/690>`__)


Deprecations and Removals
~~~~~~~~~~~~~~~~~~~~~~~~~

- Remove support for Python 3.9. (`#690 <https://github.com/python-trio/trustme/issues/690>`__)


Trustme 1.2.1 (2025-01-02)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/trustme/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.1+dev"
__version__ = "1.3.0"
Loading