diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 10be563..32c2c7f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,22 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v2.1.0 +====== + +Minor Changes +------------- + +- Use the collection version in the hcloud user-agent instead of the ansible-core version. +- hcloud_floating_ip_info - Allow querying floating ip by name. +- hcloud_load_balancer_info - Add targets health status field. +- inventory - Allow caching the hcloud inventory. + +Bugfixes +-------- + +- `*_info` - Consistently fail on invalid ID in `*_info` modules. + v2.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ce19064..0bb5bd7 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -384,3 +384,20 @@ releases: - remove-deprecated-facts-modules.yml - vendor-hcloud-python-dependency.yml release_date: '2023-07-24' + 2.1.0: + changes: + bugfixes: + - '`*_info` - Consistently fail on invalid ID in `*_info` modules.' + minor_changes: + - Use the collection version in the hcloud user-agent instead of the ansible-core + version. + - hcloud_floating_ip_info - Allow querying floating ip by name. + - hcloud_load_balancer_info - Add targets health status field. + - inventory - Allow caching the hcloud inventory. + fragments: + - add-target-health-status-in-hcloud_load_balancer_info.yml + - allow-caching-hcloud-inventory.yml + - consistently-fail-on-invalid-id.yml + - query-hcloud_floating_ip_info-by-name.yml + - use-collection-version-in-user-agent.yml + release_date: '2023-08-17' diff --git a/changelogs/fragments/add-target-health-status-in-hcloud_load_balancer_info.yml b/changelogs/fragments/add-target-health-status-in-hcloud_load_balancer_info.yml deleted file mode 100644 index 289df7d..0000000 --- a/changelogs/fragments/add-target-health-status-in-hcloud_load_balancer_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - hcloud_load_balancer_info - Add targets health status field. diff --git a/changelogs/fragments/allow-caching-hcloud-inventory.yml b/changelogs/fragments/allow-caching-hcloud-inventory.yml deleted file mode 100644 index c28799d..0000000 --- a/changelogs/fragments/allow-caching-hcloud-inventory.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - inventory - Allow caching the hcloud inventory. diff --git a/changelogs/fragments/consistently-fail-on-invalid-id.yml b/changelogs/fragments/consistently-fail-on-invalid-id.yml deleted file mode 100644 index 6ec403e..0000000 --- a/changelogs/fragments/consistently-fail-on-invalid-id.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "`*_info` - Consistently fail on invalid ID in `*_info` modules." diff --git a/changelogs/fragments/query-hcloud_floating_ip_info-by-name.yml b/changelogs/fragments/query-hcloud_floating_ip_info-by-name.yml deleted file mode 100644 index 44d61f3..0000000 --- a/changelogs/fragments/query-hcloud_floating_ip_info-by-name.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - hcloud_floating_ip_info - Allow querying floating ip by name. diff --git a/changelogs/fragments/use-collection-version-in-user-agent.yml b/changelogs/fragments/use-collection-version-in-user-agent.yml deleted file mode 100644 index 1eb09d3..0000000 --- a/changelogs/fragments/use-collection-version-in-user-agent.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Use the collection version in the hcloud user-agent instead of the ansible-core version. diff --git a/galaxy.yml b/galaxy.yml index e06b169..fd0c497 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: hetzner name: hcloud -version: 2.0.0 +version: 2.1.0 readme: README.md authors: - Hetzner Cloud (github.com/hetznercloud) diff --git a/plugins/module_utils/version.py b/plugins/module_utils/version.py index 1b23640..4c22740 100644 --- a/plugins/module_utils/version.py +++ b/plugins/module_utils/version.py @@ -1 +1 @@ -version = "2.0.0" +version = "2.1.0"