Skip to content

Commit

Permalink
Fixed the 'version_added' field in the module description
Browse files Browse the repository at this point in the history
Details:

* Fixed the 'version_added' field in the module description to no longer
  indicate the version of this module collection package, but instead the
  minimum Ansible version supported, consistent with the definition of that
  field. Since Ansible Galaxy supports Ansible 2.9 and above, the field
  now shows 2.9 for all modules.

Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Nov 21, 2020
1 parent 2d63bb0 commit 5321524
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions docs_source/changes.rst
Expand Up @@ -48,6 +48,12 @@ Released: not yet
tasks:
- ...

* Fixed the 'version_added' field in the module description to no longer
indicate the version of this module collection package, but instead the
minimum Ansible version supported, consistent with the definition of that
field. Since Ansible Galaxy supports Ansible 2.9 and above, the field
now shows 2.9 for all modules.

**Deprecations:**

**Bug fixes:**
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_adapter.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_adapter
version_added: "0.6.0"
version_added: "2.9.0"
short_description: Manages adapters of Z systems.
description:
- Gather facts about an adapter of a CPC (Z system), including its ports.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_cpc.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_cpc
version_added: "0.6.0"
version_added: "2.9.0"
short_description: Manages Z systems at the system level.
description:
- Gather facts about a CPC (Z system), including its adapters and partitions.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_crypto_attachment.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_crypto_attachment
version_added: "0.6.0"
version_added: "2.9.0"
short_description: Manages the attachment of crypto resources to partitions of
Z systems.
description:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_hba.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_hba
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages HBAs in partitions of Z systems.
description:
- Create, update, or delete an HBA (virtual Host Bus Adapter) in a partition
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_nic.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_nic
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages NICs in partitions of Z systems.
description:
- Create, update, or delete a NIC (virtual Network Interface Card) in a
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_partition.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_partition
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages partitions of Z systems.
description:
- Gather facts about a partition of a CPC (Z system), including its HBAs,
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_storage_group.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_storage_group
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages storage groups of Z systems.
description:
- Gather facts about a storage group associated with a CPC (Z system),
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_storage_group_attachment.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_storage_group_attachment
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages the attachment of storage groups to partitions of
Z systems.
description:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_storage_volume.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_storage_volume
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages storage volumes of Z systems.
description:
- Gather facts about a storage volume in a storage group associated with a
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_user.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_user
version_added: "1.0.0"
version_added: "2.9.0"
short_description: Manages users defined on the HMC of Z systems.
description:
- Gather facts about a user on an HMC of a Z system.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/zhmc_virtual_function.py
Expand Up @@ -31,7 +31,7 @@
DOCUMENTATION = """
---
module: zhmc_virtual_function
version_added: "0.5.0"
version_added: "2.9.0"
short_description: Manages virtual functions in partitions of Z systems.
description:
- Create, update, or delete a virtual function in a partition of a CPC
Expand Down

0 comments on commit 5321524

Please sign in to comment.