summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Carrillo Cruz <ricarril@redhat.com>2022-11-28 15:56:49 +0100
committerGitHub <noreply@github.com>2022-11-28 15:56:49 +0100
commit8faeed30f90f26abe2954aad63e28f40c15f4090 (patch)
tree11903a7d56566a5964a48d845b95638a892f02d4
parentea9b9716f0630467b11f63e47058c2c49de5797c (diff)
downloadansible-2.13.7rc1.tar.gz
New release v2.13.7rc1 (#79477)v2.13.7rc1
-rw-r--r--changelogs/CHANGELOG-v2.13.rst20
-rw-r--r--changelogs/changelog.yaml18
-rw-r--r--changelogs/fragments/v2.13.7rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 42 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst
index e22493cb4e..81a638e296 100644
--- a/changelogs/CHANGELOG-v2.13.rst
+++ b/changelogs/CHANGELOG-v2.13.rst
@@ -5,6 +5,26 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
+v2.13.7rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-11-28
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test - Improve consistency of executed ``pylint`` commands by making the plugins ordered.
+
+Bugfixes
+--------
+
+- file lookup now plays nice with generic lookup ``errors`` option.
+
v2.13.6
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index 68d93c8916..537ca20780 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1144,3 +1144,21 @@ releases:
- mention_acl.yml
- v2.13.6rc1_summary.yaml
release_date: '2022-10-31'
+ 2.13.7rc1:
+ changes:
+ bugfixes:
+ - file lookup now plays nice with generic lookup ``errors`` option.
+ minor_changes:
+ - ansible-test - Improve consistency of executed ``pylint`` commands by making
+ the plugins ordered.
+ release_summary: '| Release Date: 2022-11-28
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Nobody's Fault but Mine
+ fragments:
+ - ansible-test-pylint-command.yml
+ - file_lookup_errors.yml
+ - v2.13.7rc1_summary.yaml
+ release_date: '2022-11-28'
diff --git a/changelogs/fragments/v2.13.7rc1_summary.yaml b/changelogs/fragments/v2.13.7rc1_summary.yaml
new file mode 100644
index 0000000000..cf48fe481b
--- /dev/null
+++ b/changelogs/fragments/v2.13.7rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-11-28
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 100b49ed12..e3adc69e24 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.6.post0'
+__version__ = '2.13.7rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"