summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Adams <chadams@redhat.com>2022-04-25 10:25:14 -0400
committerGitHub <noreply@github.com>2022-04-25 10:25:14 -0400
commitcb6ccfda90ba042b80f83efe134414ec6f716844 (patch)
treefe2e2ff5b28cd9fb68ade94c8ba4daea55a5f842
parent4d31016e8569a2d0461a099293507681a6661503 (diff)
downloadansible-cb6ccfda90ba042b80f83efe134414ec6f716844.tar.gz
New release v2.11.11 (#77627)v2.11.11
-rw-r--r--changelogs/CHANGELOG-v2.11.rst7
-rw-r--r--changelogs/changelog.yaml15
-rw-r--r--changelogs/fragments/v2.11.11_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 23 insertions, 4 deletions
diff --git a/changelogs/CHANGELOG-v2.11.rst b/changelogs/CHANGELOG-v2.11.rst
index 763e9a04ff..768867ba94 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.11rc1
-===========
+v2.11.11
+========
Release Summary
---------------
-| Release Date: 2022-04-18
+| Release Date: 2022-04-25
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -19,6 +19,7 @@ Bugfixes
--------
- Ansible.ModuleUtils.SID - Use user principal name as is for lookup in the ``Convert-ToSID`` function - https://github.com/ansible/ansible/issues/77316
+- ansible-test - Update ``rstcheck`` constraint from ``>= 3.3.1`` to ``== 3.3.1`` to avoid breaking changes in newer releases.
- winrm - Ensure ``kinit`` is run with the same ``PATH`` env var as the Ansible process
v2.11.10
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index c2fa292b01..98094a3bf0 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1714,6 +1714,21 @@ releases:
- fqn-module-cache.yml
- v2.11.10rc1_summary.yaml
release_date: '2022-03-21'
+ 2.11.11:
+ changes:
+ bugfixes:
+ - ansible-test - Update ``rstcheck`` constraint from ``>= 3.3.1`` to ``== 3.3.1``
+ to avoid breaking changes in newer releases.
+ release_summary: '| Release Date: 2022-04-25
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Hey Hey, What Can I Do
+ fragments:
+ - ansible-test-rstcheck-pin.yml
+ - v2.11.11_summary.yaml
+ release_date: '2022-04-25'
2.11.11rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.11.11_summary.yaml b/changelogs/fragments/v2.11.11_summary.yaml
new file mode 100644
index 0000000000..80011d51c1
--- /dev/null
+++ b/changelogs/fragments/v2.11.11_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-04-25
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index ffc2df271a..7fce1d5182 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.11rc1.post0'
+__version__ = '2.11.11'
__author__ = 'Ansible, Inc.'
__codename__ = 'Hey Hey, What Can I Do'