From c1d126a4f923ffe88b62f509e3c369ad63123c50 Mon Sep 17 00:00:00 2001 From: Hetzner Cloud Bot <45457231+hcloud-bot@users.noreply.github.com> Date: Wed, 19 Mar 2025 14:02:38 +0100 Subject: [PATCH] chore(main): release 2.4.0 --- .github/release-please-manifest.json | 1 + CHANGELOG.md | 19 +++++++++++++++++++ hcloud/_version.py | 2 +- setup.py | 2 +- 4 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 .github/release-please-manifest.json diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json new file mode 100644 index 00000000..928e3fc4 --- /dev/null +++ b/.github/release-please-manifest.json @@ -0,0 +1 @@ +{".":"2.4.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3416f053..ae1bdd27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [2.4.0](https://github.com/hetznercloud/hcloud-python/compare/v2.3.0...v2.4.0) (2025-03-19) + + +### Features + +* add equality checks to domains ([#481](https://github.com/hetznercloud/hcloud-python/issues/481)) ([4d430f6](https://github.com/hetznercloud/hcloud-python/commit/4d430f6d40a2cd90bef7d308695ded480fa1578a)) +* drop support for python 3.8 ([#458](https://github.com/hetznercloud/hcloud-python/issues/458)) ([e74e319](https://github.com/hetznercloud/hcloud-python/commit/e74e3195f74cb5541b2d664c7d1812e05f4ac229)) + + +### Bug Fixes + +* server public ipv4 and ipv6 properties are nullable ([#455](https://github.com/hetznercloud/hcloud-python/issues/455)) ([d2cfee6](https://github.com/hetznercloud/hcloud-python/commit/d2cfee61167857bfe3ff88a441622da2c913810c)) + + +### Documentation + +* add links to api changelog ([#473](https://github.com/hetznercloud/hcloud-python/issues/473)) ([55d6064](https://github.com/hetznercloud/hcloud-python/commit/55d6064a8e1e6c690644d10cb70261651c78fefc)) +* fix typo in README ([#475](https://github.com/hetznercloud/hcloud-python/issues/475)) ([4a4587a](https://github.com/hetznercloud/hcloud-python/commit/4a4587a1fc70b7f9b8f0dd30f05de9976e3efad8)) + ## [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..80341d4d 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-release-please-version diff --git a/setup.py b/setup.py index 1df2e4d5..b78fbbb3 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", keywords="hcloud hetzner cloud", description="Official Hetzner Cloud python library", long_description=readme,