summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2020-10-05 16:01:30 -0500
committerRick Elrod <rick@elrod.me>2020-10-05 16:01:30 -0500
commit4b9308bd29930b65116db2ee8609c6dfcc6ba8b9 (patch)
tree5a72990d5ca628930d11122a16073bb3e0b3cc3c
parentf66f05f4bb974e4d4769a7e3f370cc3eb5954b81 (diff)
downloadansible-4b9308bd29930b65116db2ee8609c6dfcc6ba8b9.tar.gz
New release v2.8.16v2.8.16
-rw-r--r--changelogs/.changes.yaml6
-rw-r--r--changelogs/CHANGELOG-v2.8.rst7
-rw-r--r--changelogs/fragments/v2.8.16_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 14 insertions, 4 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 5c2054ef1c..45f351e6b7 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1689,6 +1689,12 @@ releases:
- dnf_gpg.yml
- v2.8.15_summary.yaml
release_date: '2020-08-31'
+ 2.8.16:
+ codename: How Many More Times
+ fragments:
+ - ansible-test-sanity-pylint-config-fix.yml
+ - v2.8.16_summary.yaml
+ release_date: '2020-10-05'
2.8.16rc1:
codename: How Many More Times
fragments:
diff --git a/changelogs/CHANGELOG-v2.8.rst b/changelogs/CHANGELOG-v2.8.rst
index ae51f998f8..226d603b1e 100644
--- a/changelogs/CHANGELOG-v2.8.rst
+++ b/changelogs/CHANGELOG-v2.8.rst
@@ -5,13 +5,13 @@ Ansible 2.8 "How Many More Times" Release Notes
.. contents:: Topics
-v2.8.16rc1
-==========
+v2.8.16
+=======
Release Summary
---------------
-| Release Date: 2020-09-28
+| Release Date: 2020-10-05
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
@@ -38,6 +38,7 @@ Bugfixes
--------
- ansible-test - Change classification using ``--changed`` now consistently handles common configuration files for supported CI providers.
+- ansible-test - Disabled the ``duplicate-code`` and ``cyclic-import`` checks for the ``pylint`` sanity test due to inconsistent results.
- ansible-test - The ``resource_prefix`` variable provided to tests running on Azure Pipelines is now converted to lowercase to match other CI providers.
- ansible-test - for local change detection, allow to specify branch to compare to with ``--base-branch`` for all types of tests (https://github.com/ansible/ansible/pull/69508).
diff --git a/changelogs/fragments/v2.8.16_summary.yaml b/changelogs/fragments/v2.8.16_summary.yaml
new file mode 100644
index 0000000000..3e95ec8085
--- /dev/null
+++ b/changelogs/fragments/v2.8.16_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-10-05
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 3aaaaccd34..aaea7ff390 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.8.16rc1.post0'
+__version__ = '2.8.16'
__author__ = 'Ansible, Inc.'
__codename__ = 'How Many More Times'