From 054735218397d39c46e4b09bf19b54b20f27bb16 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 10 Jul 2023 10:43:43 +0400 Subject: [PATCH] Bump version to 1.1.0 --- docs/source/index.rst | 16 ++++++++++++++++ src/trustme/_version.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index 4bff212..aecdfc3 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -122,6 +122,22 @@ Change history .. towncrier release notes start +Trustme 1.1.0 (2023-07-10) +-------------------------- + +Features +~~~~~~~~ + +- Allow `os.PathLike` in typing of `Blob.write_to_path`. (`#606 `__) +- Add support for PyPy 3.10 and Python 3.12. (`#609 `__) + + +Deprecations and Removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Remove support for Python 3.7. (`#609 `__) + + Trustme 1.0.0 (2023-04-24) ------------------------------ diff --git a/src/trustme/_version.py b/src/trustme/_version.py index 5becc17..6849410 100644 --- a/src/trustme/_version.py +++ b/src/trustme/_version.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.1.0"