diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst index 3472c84e76e..c1435e2e043 100644 --- a/changelogs/CHANGELOG-v2.11.rst +++ b/changelogs/CHANGELOG-v2.11.rst @@ -5,13 +5,13 @@ ansible-core 2.11 "Hey Hey, What Can I Do" Release Notes .. contents:: Topics -v2.11.4rc1 -========== +v2.11.4 +======= Release Summary --------------- -| Release Date: 2021-08-10 +| Release Date: 2021-08-16 | `Porting Guide `__ @@ -432,7 +432,7 @@ Deprecated Features ------------------- - Starting in 2.14, shell and command modules will no longer have the option to warn and suggest modules in lieu of commands. The ``warn`` parameter to these modules is now deprecated and defaults to ``False``. Similarly, the ``COMMAND_WARNINGS`` configuration option is also deprecated and defaults to ``False``. These will be removed and their presence will become an error in 2.14. -- apt_key - the paramater ``key`` does not have any effect, has been deprecated and will be removed in ansible-core version 2.14 (https://github.com/ansible/ansible/pull/70319). +- apt_key - the parameter ``key`` does not have any effect, has been deprecated and will be removed in ansible-core version 2.14 (https://github.com/ansible/ansible/pull/70319). - psrp - Set the minimum version of ``pypsrp`` to ``0.4.0``. Removed Features (previously deprecated) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 86fe92a5965..b7bc27e5a09 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -536,7 +536,7 @@ releases: ``COMMAND_WARNINGS`` configuration option is also deprecated and defaults to ``False``. These will be removed and their presence will become an error in 2.14. - - apt_key - the paramater ``key`` does not have any effect, has been deprecated + - apt_key - the parameter ``key`` does not have any effect, has been deprecated and will be removed in ansible-core version 2.14 (https://github.com/ansible/ansible/pull/70319). - psrp - Set the minimum version of ``pypsrp`` to ``0.4.0``. known_issues: @@ -1885,6 +1885,17 @@ releases: - slurp-improve-error-handling-readability.yml - v2.11.3rc1_summary.yaml release_date: '2021-07-13' + 2.11.4: + changes: + release_summary: '| Release Date: 2021-08-16 + + | `Porting Guide `__ + + ' + codename: Hey Hey, What Can I Do + fragments: + - v2.11.4_summary.yaml + release_date: '2021-08-16' 2.11.4rc1: changes: bugfixes: diff --git a/changelogs/fragments/v2.11.4_summary.yaml b/changelogs/fragments/v2.11.4_summary.yaml new file mode 100644 index 00000000000..d39f3c3a2a9 --- /dev/null +++ b/changelogs/fragments/v2.11.4_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2021-08-16 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 85e4464d332..53fa669d5cd 100644 --- a/lib/ansible/release.py +++ b/lib/ansible/release.py @@ -19,6 +19,6 @@ from __future__ import (absolute_import, division, print_function) __metaclass__ = type -__version__ = '2.11.4rc1.post0' +__version__ = '2.11.4' __author__ = 'Ansible, Inc.' __codename__ = 'Hey Hey, What Can I Do'