diff --git a/CHANGELOG.md b/CHANGELOG.md index 418422f3..f28f7b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v2.9.0](https://github.com/hetznercloud/hcloud-python/releases/tag/v2.9.0) + +### Features + +- support python 3.14 (#566) +- drop support for python 3.9 (#574) + ## [v2.8.0](https://github.com/hetznercloud/hcloud-python/releases/tag/v2.8.0) ### DNS API Beta diff --git a/hcloud/_version.py b/hcloud/_version.py index e9a32abd..b320f7b4 100644 --- a/hcloud/_version.py +++ b/hcloud/_version.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "2.8.0" # x-releaser-pleaser-version +__version__ = "2.9.0" # x-releaser-pleaser-version diff --git a/setup.py b/setup.py index 7b11d3e3..f40d4dfd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="hcloud", - version="2.8.0", # x-releaser-pleaser-version + version="2.9.0", # x-releaser-pleaser-version keywords="hcloud hetzner cloud", description="Official Hetzner Cloud python library", long_description=readme,