diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8adc1258..23568eb9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,22 @@ Hetzner Cloud Ansible Collection Release Notes .. contents:: Topics +v1.2.0 +====== + +Minor Changes +------------- + +- Dynamic Inventory Add option to specifiy the token_env variable which is used for identification if now token is set +- Improve imports of API Exception +- hcloud_server_network Allow updating alias ips +- hcloud_subnetwork Allow creating vswitch subnetworks + +New Modules +----------- + +- hcloud_load_balancer_info - Gather infos about your Hetzner Cloud load_balancers. + v1.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6b3dbdc3..187b1994 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -54,3 +54,16 @@ releases: - fix-idempotency-floating-ip.yml - gh-28-allow-setting-of-protection-on-creation.yml release_date: '2020-10-05' + 1.2.0: + changes: + minor_changes: + - Dynamic Inventory Add option to specifiy the token_env variable which is used + for identification if now token is set + - Improve imports of API Exception + - hcloud_server_network Allow updating alias ips + - hcloud_subnetwork Allow creating vswitch subnetworks + modules: + - description: Gather infos about your Hetzner Cloud load_balancers. + name: hcloud_load_balancer_info + namespace: '' + release_date: '2020-12-01' diff --git a/galaxy.yml b/galaxy.yml index 6fd4f463..822a1087 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: hetzner name: hcloud -version: 1.1.0 +version: 1.2.0 readme: README.md authors: - Hetzner Cloud (github.com/hetznercloud) diff --git a/plugins/modules/hcloud_load_balancer_info.py b/plugins/modules/hcloud_load_balancer_info.py index 4aaf973c..b9463f50 100644 --- a/plugins/modules/hcloud_load_balancer_info.py +++ b/plugins/modules/hcloud_load_balancer_info.py @@ -12,11 +12,11 @@ --- module: hcloud_load_balancer_info -short_description: Gather infos about your Hetzner Cloud load_balancers. +short_description: Gather infos about your Hetzner Cloud Load Balancers. description: - - Gather infos about your Hetzner Cloud load_balancers. + - Gather infos about your Hetzner Cloud Load Balancers.. author: - Lukas Kaemmerling (@LKaemmerling)