diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a0993d..218a777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.9.0] - 2025-09-25 + ### Removed - Support for discontinued non-managed object storage product. Note: treated as non-breaking change as all users have been migrated to the new managed product +### Added + +- Support for trusted pypi publisher + ## [2.8.0] - 2025-08-18 ### Added @@ -315,7 +321,7 @@ Move to X.Y.Z versioning and bump version from 0.1(.0) to 0.1.1 First release, available at https://pypi.python.org/pypi/upcloud-api-python -[Unreleased]: https://github.com/UpCloudLtd/upcloud-python-api/compare/v2.8.0...HEAD +[Unreleased]: https://github.com/UpCloudLtd/upcloud-python-api/compare/v2.9.0...HEAD [0.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.1 [0.1.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.1.1 [0.2.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v0.2.0 @@ -344,3 +350,4 @@ First release, available at https://pypi.python.org/pypi/upcloud-api-python [2.6.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.6.0 [2.7.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.7.0 [2.8.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.8.0 +[2.9.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.9.0 diff --git a/README.md b/README.md index 5afb7ad..c867108 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Alternatively, if you want the newest (possibly not yet released) stuff, clone t python setup.py install ``` -### Supported Python versions in API v2.8.0 +### Supported Python versions - Python 3.9 - Python 3.10 diff --git a/upcloud_api/__init__.py b/upcloud_api/__init__.py index 9deb6c9..77a1e5a 100644 --- a/upcloud_api/__init__.py +++ b/upcloud_api/__init__.py @@ -2,7 +2,7 @@ Python Interface to UpCloud's API. """ -__version__ = '2.8.0' +__version__ = '2.9.0' __author__ = 'Developers from UpCloud & elsewhere' __author_email__ = 'hello@upcloud.com' __maintainer__ = 'UpCloud'