diff options
-rw-r--r-- | changelogs/CHANGELOG-v2.14.rst | 8 | ||||
-rw-r--r-- | changelogs/changelog.yaml | 11 | ||||
-rw-r--r-- | changelogs/fragments/2.14.4_summary.yaml | 3 | ||||
-rw-r--r-- | lib/ansible/release.py | 2 |
4 files changed, 19 insertions, 5 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst index 7b995afd72..c88a069e9b 100644 --- a/changelogs/CHANGELOG-v2.14.rst +++ b/changelogs/CHANGELOG-v2.14.rst @@ -5,14 +5,14 @@ ansible-core 2.14 "C'mon Everybody" Release Notes .. contents:: Topics -v2.14.4rc1 -========== +v2.14.4 +======= Release Summary --------------- -| Release Date: 2023-03-21 -| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__ +| Release Date: 2023-03-27 +| `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__ Minor Changes diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c484bc7f1e..3cf2490cc7 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1117,6 +1117,17 @@ releases: - strategy_badid_fix.yml - v2.14.3rc1_summary.yaml release_date: '2023-02-20' + 2.14.4: + changes: + release_summary: '| Release Date: 2023-03-27 + + | `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__ + + ' + codename: C'mon Everybody + fragments: + - 2.14.4_summary.yaml + release_date: '2023-03-27' 2.14.4rc1: changes: breaking_changes: diff --git a/changelogs/fragments/2.14.4_summary.yaml b/changelogs/fragments/2.14.4_summary.yaml new file mode 100644 index 0000000000..a676fca6d1 --- /dev/null +++ b/changelogs/fragments/2.14.4_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2023-03-27 + | `Porting Guide <https://docs.ansible.com/ansible-core/2.14/porting_guides/porting_guide_core_2.14.html>`__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 8c98768487..50d2380625 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.14.4rc1.post0' +__version__ = '2.14.4' __author__ = 'Ansible, Inc.' __codename__ = "C'mon Everybody" |