diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d66ff3b..8adc125 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,23 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v1.1.0 +====== + +Minor Changes +------------- + +- hcloud_floating_ip Allow creating Floating IP with protection +- hcloud_load_balancer Allow creating Load Balancer with protection +- hcloud_network Allow creating Network with protection +- hcloud_server Allow creating server with protection +- hcloud_volume Allow creating Volumes with protection + +Bugfixes +-------- + +- hcloud_floating_ip Fix idempotency when floating ip is assigned to server + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 86577b5..6b3dbdc 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -40,3 +40,17 @@ releases: - gh7-allow-enabling-of-backups-on-server-creation.yml - lb-allow-change-type.yml release_date: '2020-08-11' + 1.1.0: + changes: + bugfixes: + - hcloud_floating_ip Fix idempotency when floating ip is assigned to server + minor_changes: + - hcloud_floating_ip Allow creating Floating IP with protection + - hcloud_load_balancer Allow creating Load Balancer with protection + - hcloud_network Allow creating Network with protection + - hcloud_server Allow creating server with protection + - hcloud_volume Allow creating Volumes with protection + fragments: + - fix-idempotency-floating-ip.yml + - gh-28-allow-setting-of-protection-on-creation.yml + release_date: '2020-10-05' diff --git a/changelogs/fragments/fix-idempotency-floating-ip.yml b/changelogs/fragments/fix-idempotency-floating-ip.yml deleted file mode 100644 index 99bc49c..0000000 --- a/changelogs/fragments/fix-idempotency-floating-ip.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - hcloud_floating_ip Fix idempotency when floating ip is assigned to server diff --git a/changelogs/fragments/gh-28-allow-setting-of-protection-on-creation.yml b/changelogs/fragments/gh-28-allow-setting-of-protection-on-creation.yml deleted file mode 100644 index 47b0c3c..0000000 --- a/changelogs/fragments/gh-28-allow-setting-of-protection-on-creation.yml +++ /dev/null @@ -1,6 +0,0 @@ -minor_changes: - - hcloud_server Allow creating server with protection - - hcloud_floating_ip Allow creating Floating IP with protection - - hcloud_load_balancer Allow creating Load Balancer with protection - - hcloud_network Allow creating Network with protection - - hcloud_volume Allow creating Volumes with protection diff --git a/galaxy.yml b/galaxy.yml index 3910325..6fd4f46 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: hetzner name: hcloud -version: 1.0.0 +version: 1.1.0 readme: README.md authors: - Hetzner Cloud (github.com/hetznercloud)