summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/CHANGELOG-v2.13.rst15
-rw-r--r--changelogs/changelog.yaml14
-rw-r--r--changelogs/fragments/v2.13.0rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 33 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst
index be99432d98..3d37c4649e 100644
--- a/changelogs/CHANGELOG-v2.13.rst
+++ b/changelogs/CHANGELOG-v2.13.rst
@@ -5,6 +5,21 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
+v2.13.0rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-05-02
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Prevent losing unsafe on results returned from lookups (https://github.com/ansible/ansible/issues/77535)
+
v2.13.0b1
=========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index f5e29e5ea4..d25cb59a42 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -744,3 +744,17 @@ releases:
- v2.13.0b1_summary.yaml
- vm_more_efficient.yml
release_date: '2022-04-25'
+ 2.13.0rc1:
+ changes:
+ bugfixes:
+ - Prevent losing unsafe on results returned from lookups (https://github.com/ansible/ansible/issues/77535)
+ release_summary: '| Release Date: 2022-05-02
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Nobody's Fault but Mine
+ fragments:
+ - 77535-prevent-losing-unsafe-lookups.yml
+ - v2.13.0rc1_summary.yaml
+ release_date: '2022-05-02'
diff --git a/changelogs/fragments/v2.13.0rc1_summary.yaml b/changelogs/fragments/v2.13.0rc1_summary.yaml
new file mode 100644
index 0000000000..45182ba45d
--- /dev/null
+++ b/changelogs/fragments/v2.13.0rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-05-02
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 2412ebbc0f..c6a6f97a31 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.13.0b1.post0'
+__version__ = '2.13.0rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"