diff --git a/CHANGELOG.md b/CHANGELOG.md index e14780d..1060137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.7.0] - 2025-07-23 + +### Changed + +- Python versions supported: 3.9, 3.10, 3.11, 3.12, 3.13, PyPy3. Dropped support for 3.8. ## [2.6.0] - 2024-05-30 @@ -299,7 +304,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.6.0...HEAD +[Unreleased]: https://github.com/UpCloudLtd/upcloud-python-api/compare/v2.7.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 @@ -326,3 +331,4 @@ First release, available at https://pypi.python.org/pypi/upcloud-api-python [2.5.0]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.5.0 [2.5.1]: https://github.com/UpCloudLtd/upcloud-python-api/releases/tag/v2.5.1 [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 diff --git a/README.md b/README.md index b95c5b5..9684a06 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Alternatively, if you want the newest (possibly not yet released) stuff, clone t python setup.py install ``` -### Supported Python versions in API v2.6.0 +### Supported Python versions in API v2.7.0 - Python 3.9 - Python 3.10 diff --git a/upcloud_api/__init__.py b/upcloud_api/__init__.py index ade512d..3df1c6a 100644 --- a/upcloud_api/__init__.py +++ b/upcloud_api/__init__.py @@ -2,7 +2,7 @@ Python Interface to UpCloud's API. """ -__version__ = '2.6.0' +__version__ = '2.7.0' __author__ = 'Developers from UpCloud & elsewhere' __author_email__ = 'hello@upcloud.com' __maintainer__ = 'UpCloud'