New release v2.10.0rc3

This commit is contained in:
Rick Elrod 2020-07-24 15:59:04 -05:00
parent 9b992c0b78
commit f28fa88448
4 changed files with 33 additions and 1 deletions

View file

@ -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
==========

View file

@ -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'

View file

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2020-07-24
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

View file

@ -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'