summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-07-24 15:59:04 -0500
committerRick Elrod <rick@elrod.me>2020-07-24 15:59:04 -0500
commitf28fa884483990f0f4ee11052a1882fb038f948b (patch)
tree0f21cffd9a7fc98fc61545c9b7583b9d91509b14
parent9b992c0b78333cc3c35ffa3bc210a69bfc1c0e72 (diff)
downloadansible-f28fa884483990f0f4ee11052a1882fb038f948b.tar.gz
New release v2.10.0rc3v2.10.0rc3
-rw-r--r--changelogs/CHANGELOG-v2.10.rst15
-rw-r--r--changelogs/changelog.yaml14
-rw-r--r--changelogs/fragments/v2.10.0rc3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 33 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.10.rst b/changelogs/CHANGELOG-v2.10.rst
index 813b6df5fb..e82029bcd7 100644
--- a/changelogs/CHANGELOG-v2.10.rst
+++ b/changelogs/CHANGELOG-v2.10.rst
@@ -5,6 +5,21 @@ Ansible Base 2.10 "When the Levee Breaks" Release Notes
.. contents:: Topics
+v2.10.0rc3
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2020-07-24
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- reset logging level to INFO due to CVE-2019-14846.
+
v2.10.0rc2
==========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 0fc505d9ad..69fc311884 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1717,3 +1717,17 @@ releases:
- set_fact-connection_vars.yml
- v2.10.0rc2_summary.yaml
release_date: '2020-07-23'
+ 2.10.0rc3:
+ changes:
+ bugfixes:
+ - reset logging level to INFO due to CVE-2019-14846.
+ release_summary: '| Release Date: 2020-07-24
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: When the Levee Breaks
+ fragments:
+ - keep_log_at_info.yml
+ - v2.10.0rc3_summary.yaml
+ release_date: '2020-07-24'
diff --git a/changelogs/fragments/v2.10.0rc3_summary.yaml b/changelogs/fragments/v2.10.0rc3_summary.yaml
new file mode 100644
index 0000000000..2b6f5243c7
--- /dev/null
+++ b/changelogs/fragments/v2.10.0rc3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-07-24
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index e09074b58e..52d0476b2d 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.10.0rc2.post0'
+__version__ = '2.10.0rc3'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'