summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Savineau <dsavinea@redhat.com>2021-11-29 15:40:26 -0500
committerGitHub <noreply@github.com>2021-11-29 15:40:26 -0500
commit9086a4b61aa2c694ae115bbf7fef2073fd6609bd (patch)
tree2f93c07b7c805b6c120103f0b02061e8630ad39b
parent63e958ebc95738e4db42064e9b5ca5ab1ff56ce3 (diff)
downloadansible-9086a4b61aa2c694ae115bbf7fef2073fd6609bd.tar.gz
New release v2.10.16rc1 (#76390)v2.10.16rc1
-rw-r--r--changelogs/CHANGELOG-v2.10.rst15
-rw-r--r--changelogs/changelog.yaml14
-rw-r--r--changelogs/fragments/v2.10.16rc1_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 6cba769ad2..b604d9e5e4 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.16rc1
+===========
+
+Release Summary
+---------------
+
+| Release Date: 2021-11-29
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- cli defaults for ssh args set to None as '' was bypassing normal default.
+
v2.10.15
========
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 46c2eff27c..d7071d72ae 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -2043,6 +2043,20 @@ releases:
- powershell-addtype-env-vars.yml
- v2.10.15rc1_summary.yaml
release_date: '2021-10-04'
+ 2.10.16rc1:
+ changes:
+ bugfixes:
+ - cli defaults for ssh args set to None as '' was bypassing normal default.
+ release_summary: '| Release Date: 2021-11-29
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: When the Levee Breaks
+ fragments:
+ - fix_cli_ssh_defaults.yml
+ - v2.10.16rc1_summary.yaml
+ release_date: '2021-11-29'
2.10.1rc1:
changes:
bugfixes:
diff --git a/changelogs/fragments/v2.10.16rc1_summary.yaml b/changelogs/fragments/v2.10.16rc1_summary.yaml
new file mode 100644
index 0000000000..3bd5818c1a
--- /dev/null
+++ b/changelogs/fragments/v2.10.16rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2021-11-29
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index ba0468f1e4..d10c6ebf7a 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.15.post0'
+__version__ = '2.10.16rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'When the Levee Breaks'