diff --git a/CHANGELOG.md b/CHANGELOG.md index 3416f053..1d3db0d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [v2.4.0](https://github.com/hetznercloud/hcloud-python/releases/tag/v2.4.0) + +### Features + +- drop support for python 3.8 (#458) +- add equality checks to domains (#481) + +### Bug Fixes + +- server public ipv4 and ipv6 properties are nullable (#455) + ## [2.3.0](https://github.com/hetznercloud/hcloud-python/compare/v2.2.1...v2.3.0) (2024-10-09) diff --git a/hcloud/_version.py b/hcloud/_version.py index f20936d0..591adbfb 100644 --- a/hcloud/_version.py +++ b/hcloud/_version.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "2.3.0" # x-releaser-pleaser-version +__version__ = "2.4.0" # x-releaser-pleaser-version diff --git a/setup.py b/setup.py index 1df2e4d5..0cde92be 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="hcloud", - version="2.3.0", # x-releaser-pleaser-version + version="2.4.0", # x-releaser-pleaser-version keywords="hcloud hetzner cloud", description="Official Hetzner Cloud python library", long_description=readme,