Skip to content

Commit 97a37b9

Browse files
committed
New release v2.6.13
1 parent de1c9ff commit 97a37b9

File tree

4 files changed

+39
-1
lines changed

4 files changed

+39
-1
lines changed

changelogs/.changes.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,17 @@ releases:
378378
- win_copy-empty-dir.yaml
379379
- win_lineinfile-output.yaml
380380
release_date: '2019-01-17'
381+
2.6.13:
382+
codename: Heartbreaker
383+
fragments:
384+
- fix_pull_extra.yml
385+
- junos_commit_error_fix.yaml
386+
- ssh_connection_invalid_password.yaml
387+
- systemd-warn-on-chroot.yaml
388+
- v2.6.13_summary.yaml
389+
- vmware_guest-documentation_fix.yaml
390+
- win_power_plan-windows10.yaml
391+
release_date: '2019-02-07'
381392
2.6.2:
382393
codename: Heartbreaker
383394
fragments:

changelogs/CHANGELOG-v2.6.rst

+24
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22
Ansible 2.6 "Heartbreaker" Release Notes
33
========================================
44

5+
v2.6.13
6+
=======
7+
8+
Release Summary
9+
---------------
10+
11+
| Release Date: 2019-02-07
12+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
13+
14+
15+
Minor Changes
16+
-------------
17+
18+
- Fixed typo in vmware documentation fragment. Changed "supported added" to "support added".
19+
20+
Bugfixes
21+
--------
22+
23+
- Fix mandatory statement error for junos modules (https://github.com/ansible/ansible/pull/50138)
24+
- fix ansible-pull hanlding of extra args, complex quoting is needed for inline JSON
25+
- ssh connection - do not retry with invalid credentials to prevent account lockout (https://github.com/ansible/ansible/issues/48422)
26+
- systemd - warn when exeuting in a chroot environment rather than failing (https://github.com/ansible/ansible/pull/43904)
27+
- win_power_plan - Fix issue where win_power_plan failed on newer Windows 10 builds - https://github.com/ansible/ansible/issues/43827
28+
529
v2.6.12
630
=======
731

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
release_summary: |
2+
| Release Date: 2019-02-07
3+
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

lib/ansible/release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from __future__ import (absolute_import, division, print_function)
2020
__metaclass__ = type
2121

22-
__version__ = '2.6.12.post0'
22+
__version__ = '2.6.13'
2323
__author__ = 'Ansible, Inc.'
2424
__codename__ = 'Heartbreaker'

0 commit comments

Comments
 (0)