summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-02-07 14:08:03 -0800
committerToshio Kuratomi <a.badger@gmail.com>2019-02-07 14:08:03 -0800
commit97a37b9ebcd8c67480ae4f4b93ee21922545c3a2 (patch)
treec05c0a3996efa366a9f00b92028d966f27183e19
parentde1c9ff56cca58e5a98f5671fd7353061a133d3c (diff)
downloadansible-2.6.13.tar.gz
New release v2.6.13v2.6.13
-rw-r--r--changelogs/.changes.yaml11
-rw-r--r--changelogs/CHANGELOG-v2.6.rst24
-rw-r--r--changelogs/fragments/v2.6.13_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 39 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index db6ee47a35..c59df3e878 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -378,6 +378,17 @@ releases:
- win_copy-empty-dir.yaml
- win_lineinfile-output.yaml
release_date: '2019-01-17'
+ 2.6.13:
+ codename: Heartbreaker
+ fragments:
+ - fix_pull_extra.yml
+ - junos_commit_error_fix.yaml
+ - ssh_connection_invalid_password.yaml
+ - systemd-warn-on-chroot.yaml
+ - v2.6.13_summary.yaml
+ - vmware_guest-documentation_fix.yaml
+ - win_power_plan-windows10.yaml
+ release_date: '2019-02-07'
2.6.2:
codename: Heartbreaker
fragments:
diff --git a/changelogs/CHANGELOG-v2.6.rst b/changelogs/CHANGELOG-v2.6.rst
index cea7d5ffca..ab73fb0fe9 100644
--- a/changelogs/CHANGELOG-v2.6.rst
+++ b/changelogs/CHANGELOG-v2.6.rst
@@ -2,6 +2,30 @@
Ansible 2.6 "Heartbreaker" Release Notes
========================================
+v2.6.13
+=======
+
+Release Summary
+---------------
+
+| Release Date: 2019-02-07
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Fixed typo in vmware documentation fragment. Changed "supported added" to "support added".
+
+Bugfixes
+--------
+
+- Fix mandatory statement error for junos modules (https://github.com/ansible/ansible/pull/50138)
+- fix ansible-pull hanlding of extra args, complex quoting is needed for inline JSON
+- ssh connection - do not retry with invalid credentials to prevent account lockout (https://github.com/ansible/ansible/issues/48422)
+- systemd - warn when exeuting in a chroot environment rather than failing (https://github.com/ansible/ansible/pull/43904)
+- win_power_plan - Fix issue where win_power_plan failed on newer Windows 10 builds - https://github.com/ansible/ansible/issues/43827
+
v2.6.12
=======
diff --git a/changelogs/fragments/v2.6.13_summary.yaml b/changelogs/fragments/v2.6.13_summary.yaml
new file mode 100644
index 0000000000..e0f9279e16
--- /dev/null
+++ b/changelogs/fragments/v2.6.13_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-02-07
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index a8f6b0f4ac..5f1b8fbba8 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.6.12.post0'
+__version__ = '2.6.13'
__author__ = 'Ansible, Inc.'
__codename__ = 'Heartbreaker'