Add version_added for all new features (#214)

* Add version_added: 1.0.0 for all new features added before pre-ansible-base.

* Add version_added: 1.0.0 for all new features.

* Next release will be 0.2.0

* Fix error.

* Remove unnecessary warnings.
This commit is contained in:
Felix Fontein 2020-06-13 15:01:19 +02:00 committed by GitHub
parent c081bb6c9c
commit f9589d78a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 220 additions and 10 deletions

View file

@ -41,6 +41,7 @@ options:
- See supported version ranges on U(https://cwiki.apache.org/confluence/display/MAVENOLD/Dependency+Mediation+and+Conflict+Resolution)
- The range type "(,1.0],[1.2,)" and "(,1.1),(1.1,)" is not supported.
- Mutually exclusive with I(version).
version_added: '0.2.0'
classifier:
description:
- The maven classifier coordinate
@ -74,6 +75,7 @@ options:
upon initial request.
default: 'no'
type: bool
version_added: '0.2.0'
dest:
description:
- The path where the artifact should be written to

View file

@ -69,6 +69,7 @@ options:
- Option flags to upgrade.
type: list
elements: str
version_added: '0.2.0'
notes:
- When used with a `loop:` each package will be processed individually,
it is much more efficient to pass the list directly to the `name` option.
@ -140,17 +141,17 @@ msg:
unchanged_pkgs:
description:
- List of package names which are unchanged after module run
- "Added in version 2.10"
returned: success
type: list
sample: ["awscli", "ag"]
version_added: '0.2.0'
changed_pkgs:
description:
- List of package names which are changed after module run
- "Added in version 2.10"
returned: success
type: list
sample: ['git', 'git-cola']
version_added: '0.2.0'
'''
import os.path

View file

@ -14,6 +14,7 @@ module: mas
short_description: Manage Mac App Store applications with mas-cli
description:
- Installs, uninstalls and updates macOS applications from the Mac App Store using the C(mas-cli).
version_added: '0.2.0'
author:
- Michael Heap (@mheap)
- Lukas Bestle (@lukasbestle)

View file

@ -50,6 +50,7 @@ options:
can modify traffic between the module and the site.
type: bool
default: true
version_added: '0.2.0'
'''
EXAMPLES = '''

View file

@ -54,6 +54,7 @@ options:
upgrades and installations will fail when xbps is not up to date.
type: bool
default: 'yes'
version_added: '0.2.0'
'''
EXAMPLES = '''

View file

@ -87,6 +87,7 @@ options:
required: false
default: "no"
type: bool
version_added: '0.2.0'
update_cache:
description:
- Run the equivalent of C(zypper refresh) before the operation. Disabled in check mode.
@ -112,12 +113,14 @@ options:
default: false
description:
- Adds C(--allow_vendor_change) option to I(zypper) dist-upgrade command.
version_added: '0.2.0'
replacefiles:
type: bool
required: false
default: false
description:
- Adds C(--replacefiles) option to I(zypper) install/update command.
version_added: '0.2.0'
notes:
- When used with a `loop:` each package will be processed individually,
it is much more efficient to pass the list directly to the `name` option.