summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-05-12 13:25:40 -0500
committerRick Elrod <rick@elrod.me>2020-05-12 13:25:40 -0500
commit6f83b9aff42331e15c55a171de0a8b001208c18c (patch)
tree9f39d1928754b9e319adc29a1f4800e50e0816ca
parent5a0d35646dc0854229c742d70a2ce56f8b2d91e4 (diff)
downloadansible-6f83b9aff42331e15c55a171de0a8b001208c18c.tar.gz
New release v2.9.9v2.9.9
-rw-r--r--changelogs/.changes.yaml6
-rw-r--r--changelogs/CHANGELOG-v2.9.rst15
-rw-r--r--changelogs/fragments/v2.9.9_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 25 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 04539a3bbb..4f6710f95d 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1709,3 +1709,9 @@ releases:
- v2.9.8_summary.yaml
- win_psmodule-repo-tls.yaml
release_date: '2020-05-11'
+ 2.9.9:
+ codename: Immigrant Song
+ fragments:
+ - 69451-fix-fileglob-nonexistent-subdirs.yaml
+ - v2.9.9_summary.yaml
+ release_date: '2020-05-12'
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 5f7ccf44bd..2ebc805b9f 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,21 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.9
+======
+
+Release Summary
+---------------
+
+| Release Date: 2020-05-12
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- Fix an issue with the ``fileglob`` plugin where passing a subdirectory of non-existent directory would cause it to fail - https://github.com/ansible/ansible/issues/69450
+
v2.9.8
======
diff --git a/changelogs/fragments/v2.9.9_summary.yaml b/changelogs/fragments/v2.9.9_summary.yaml
new file mode 100644
index 0000000000..299363724a
--- /dev/null
+++ b/changelogs/fragments/v2.9.9_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-05-12
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 9339872168..8a5a73d46a 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.9.8.post0'
+__version__ = '2.9.9'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'