summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Adams <chadams@redhat.com>2022-09-06 12:41:07 -0400
committerGitHub <noreply@github.com>2022-09-06 12:41:07 -0400
commit301ab2bd5282508de261357fcfc39dff9814063b (patch)
tree88182fdfcb5111437aecaf57478bb0ee806dd4e0
parent12097c81b940bc324dbe995bb039d87905d1e543 (diff)
downloadansible-301ab2bd5282508de261357fcfc39dff9814063b.tar.gz
New release v2.12.9rc1 (#78716)v2.12.9rc1
-rw-r--r--changelogs/CHANGELOG-v2.12.rst15
-rw-r--r--changelogs/changelog.yaml14
-rw-r--r--changelogs/fragments/v2.12.9rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 33 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.12.rst b/changelogs/CHANGELOG-v2.12.rst
index ca7ce646a6..af9a456221 100644
--- a/changelogs/CHANGELOG-v2.12.rst
+++ b/changelogs/CHANGELOG-v2.12.rst
@@ -5,6 +5,21 @@ ansible-core 2.12 "Dazed and Confused" Release Notes
.. contents:: Topics
+v2.12.9rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-09-06
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Fix for network_cli not getting all relevant connection options
+
v2.12.8
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index e9fc5a7e01..78451d654e 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1568,3 +1568,17 @@ releases:
- atomic_cache_files.yml
- v2.12.8rc1_summary.yaml
release_date: '2022-08-08'
+ 2.12.9rc1:
+ changes:
+ bugfixes:
+ - Fix for network_cli not getting all relevant connection options
+ release_summary: '| Release Date: 2022-09-06
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Dazed and Confused
+ fragments:
+ - 74446-network-conn-options.yaml
+ - v2.12.9rc1_summary.yaml
+ release_date: '2022-09-06'
diff --git a/changelogs/fragments/v2.12.9rc1_summary.yaml b/changelogs/fragments/v2.12.9rc1_summary.yaml
new file mode 100644
index 0000000000..07a694f225
--- /dev/null
+++ b/changelogs/fragments/v2.12.9rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-09-06
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index bbc4bce416..9d4388ccb9 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.12.8.post0'
+__version__ = '2.12.9rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'Dazed and Confused'