From 7d1df1a66fadece4726ce1b62aaad6f62781037a Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 5 Aug 2026 12:26:10 +0400 Subject: [PATCH] Bump version to 1.3.0 --- docs/source/index.rst | 19 ++++++++++++++++++- src/trustme/_version.py | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index 9dba23e..ef487be 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -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 `__ (``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. @@ -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 `__) +- Add support for Python 3.14, including the free-threaded build. (`#690 `__) + + +Deprecations and Removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Remove support for Python 3.9. (`#690 `__) + + Trustme 1.2.1 (2025-01-02) -------------------------- diff --git a/src/trustme/_version.py b/src/trustme/_version.py index 8f239b6..67bc602 100644 --- a/src/trustme/_version.py +++ b/src/trustme/_version.py @@ -1 +1 @@ -__version__ = "1.2.1+dev" +__version__ = "1.3.0"