From b42ebac72df32e41461117304eb0d27e3fa99343 Mon Sep 17 00:00:00 2001 From: Hetzner Cloud Bot <45457231+hcloud-bot@users.noreply.github.com> Date: Tue, 16 Apr 2024 12:27:43 +0200 Subject: [PATCH] chore(main): release 3.1.1 (#497) :robot: I have created a release *beep* *boop* --- ## [3.1.1](https://github.com/ansible-collections/hetzner.hcloud/compare/3.1.0...3.1.1) (2024-04-16) ### Bug Fixes * **inventory:** ensure host ipv6 variable is json serializable ([#496](https://github.com/ansible-collections/hetzner.hcloud/issues/496)) ([a98cf72](https://github.com/ansible-collections/hetzner.hcloud/commit/a98cf72f927bf36ec9745a03bba16c13728154e2)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .github/release-please-manifest.json | 2 +- CHANGELOG.rst | 8 ++++++++ changelogs/changelog.yaml | 7 +++++++ changelogs/dev-changelog.md | 7 +++++++ changelogs/fragments/inventory-fix-serialization.yml | 2 -- galaxy.yml | 2 +- plugins/module_utils/version.py | 2 +- 7 files changed, 25 insertions(+), 5 deletions(-) delete mode 100644 changelogs/fragments/inventory-fix-serialization.yml diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 47709bde..c313fd61 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1 +1 @@ -{".":"3.1.0"} +{".":"3.1.1"} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5cd35520..3ef5b159 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,14 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v3.1.1 +====== + +Bugfixes +-------- + +- inventory - Ensure inventory host variables are serializable and can be cached. + v3.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 240ac923..235544b9 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -542,3 +542,10 @@ releases: - server-use-id-or-name.yml - sort-alias-ips-in-server-network.yml release_date: '2024-04-15' + 3.1.1: + changes: + bugfixes: + - inventory - Ensure inventory host variables are serializable and can be cached. + fragments: + - inventory-fix-serialization.yml + release_date: '2024-04-16' diff --git a/changelogs/dev-changelog.md b/changelogs/dev-changelog.md index 26d43e42..7b8a0b5d 100644 --- a/changelogs/dev-changelog.md +++ b/changelogs/dev-changelog.md @@ -1,5 +1,12 @@ # Changelog +## [3.1.1](https://github.com/ansible-collections/hetzner.hcloud/compare/3.1.0...3.1.1) (2024-04-16) + + +### Bug Fixes + +* **inventory:** ensure host ipv6 variable is json serializable ([#496](https://github.com/ansible-collections/hetzner.hcloud/issues/496)) ([a98cf72](https://github.com/ansible-collections/hetzner.hcloud/commit/a98cf72f927bf36ec9745a03bba16c13728154e2)) + ## [3.1.0](https://github.com/ansible-collections/hetzner.hcloud/compare/3.0.0...3.1.0) (2024-04-15) diff --git a/changelogs/fragments/inventory-fix-serialization.yml b/changelogs/fragments/inventory-fix-serialization.yml deleted file mode 100644 index cc91bf4e..00000000 --- a/changelogs/fragments/inventory-fix-serialization.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - inventory - Ensure inventory host variables are serializable and can be cached. diff --git a/galaxy.yml b/galaxy.yml index 914ac7c3..ae40c373 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: hetzner name: hcloud -version: 3.1.0 +version: 3.1.1 readme: README.md authors: - Hetzner Cloud (github.com/hetznercloud) diff --git a/plugins/module_utils/version.py b/plugins/module_utils/version.py index e25a42ca..0bf90356 100644 --- a/plugins/module_utils/version.py +++ b/plugins/module_utils/version.py @@ -1,3 +1,3 @@ from __future__ import annotations -version = "3.1.0" # x-release-please-version +version = "3.1.1" # x-release-please-version