summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian M. Adams <rooftopcellist@gmail.com>2021-08-16 13:25:51 -0400
committerChristian M. Adams <rooftopcellist@gmail.com>2021-08-16 13:25:51 -0400
commit2344b183826b6ccd56b4260601e9813a2e9ef680 (patch)
tree064657f98ac13f7c9dc846de65b4c2d7ee2c6985
parentf22eab3dfec607f923520bc18335ae46088c4b80 (diff)
downloadansible-2344b183826b6ccd56b4260601e9813a2e9ef680.tar.gz
New release v2.11.4v2.11.4
-rw-r--r--changelogs/CHANGELOG-v2.11.rst8
-rw-r--r--changelogs/changelog.yaml13
-rw-r--r--changelogs/fragments/v2.11.4_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 20 insertions, 6 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst
index 3472c84e76..c1435e2e04 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -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 86fe92a596..b7bc27e5a0 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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 0000000000..d39f3c3a2a
--- /dev/null
+++ b/changelogs/fragments/v2.11.4_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-08-16
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 85e4464d33..53fa669d5c 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'