diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml index 548d89cdd1d..bec7d36c6bf 100644 --- a/changelogs/.changes.yaml +++ b/changelogs/.changes.yaml @@ -1539,3 +1539,9 @@ releases: - junos - sros release_date: '2020-01-15' + 2.9.4: + codename: Immigrant Song + fragments: + - 66549-enablerepo-not-honored-when-used-with-disablerepo-all.yml + - v2.9.4_summary.yaml + release_date: '2020-01-20' diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst index 216baba09be..52497d94f6b 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.4 +====== + +Release Summary +--------------- + +| Release Date: 2020-01-20 +| `Porting Guide `__ + + +Bugfixes +-------- + +- yum - fix bug that caused ``enablerepo`` to not be honored when used with disablerepo all wildcard/glob (https://github.com/ansible/ansible/issues/66549) + v2.9.3 ====== diff --git a/changelogs/fragments/v2.9.4_summary.yaml b/changelogs/fragments/v2.9.4_summary.yaml new file mode 100644 index 00000000000..48e193b83e9 --- /dev/null +++ b/changelogs/fragments/v2.9.4_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2020-01-20 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 90fbab67774..c3d0f9c1452 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.3.post0' +__version__ = '2.9.4' __author__ = 'Ansible, Inc.' __codename__ = 'Immigrant Song'