mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
chore(main): release 3.1.1 (#497)
🤖 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
](a98cf72f92
)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
This commit is contained in:
parent
a98cf72f92
commit
b42ebac72d
7 changed files with 25 additions and 5 deletions
2
.github/release-please-manifest.json
vendored
2
.github/release-please-manifest.json
vendored
|
@ -1 +1 @@
|
|||
{".":"3.1.0"}
|
||||
{".":"3.1.1"}
|
||||
|
|
|
@ -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
|
||||
======
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- inventory - Ensure inventory host variables are serializable and can be cached.
|
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
version = "3.1.0" # x-release-please-version
|
||||
version = "3.1.1" # x-release-please-version
|
||||
|
|
Loading…
Reference in a new issue