Skip to content

Commit

Permalink
Version bump for 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jimi-c committed May 23, 2014
1 parent a75a84b commit ce4883b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Ansible Changes By Release
==========================

## 1.6.2 "And the Cradle Will Rock" - May 23, 2014

- If an improper locale is specified, core modules will now automatically revert to using the 'C' locale.
- Modules using the fetch_url utility will now obey proxy environment variables.
- The SSL validation step in fetch_url will likewise obey proxy settings, however only proxies using the http protocol are supported.
- Fixed multiple bugs in docker module related to version changes upstream.
- Fixed a bug in the ec2_group module where egress rules were lost when a VPC was specified.
- Fixed two bugs in the synchronize module:
* a trailing slash might be lost when calculating relative paths, resulting in an incorrect destination.
* the sync might use the inventory directory incorrectly instead of the playbook or role directory.
- Files will now only be chown'd on an atomic move if the src/dest uid/gid do not match.

## 1.6.1 "And the Cradle Will Rock" - May 7, 2014

- Fixed a bug in group_by, where systems were being grouped incorrectly.
Expand Down
1 change: 1 addition & 0 deletions RELEASES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Active Development

1.7 "Summer Nights" -------- CURRENT DEVEL BRANCH

1.6.2 "The Cradle Will Rock" - 05-23-2014
1.6.1 "The Cradle Will Rock" - 05-07-2014
1.6 "The Cradle Will Rock" - 05-05-2014
1.5.5 "Love Walks In" -------- 04-18-2014
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
2 changes: 1 addition & 1 deletion lib/ansible/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
__version__ = '1.6.1'
__version__ = '1.6.2'
__author__ = 'Michael DeHaan'
6 changes: 6 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
ansible (1.6.2) unstable; urgency=low

* 1.6.2 release

-- Michael DeHaan <[email protected]> Fri, 23 May 2014 17:30:00 -0500

ansible (1.6.1) unstable; urgency=low

* 1.6.1 release
Expand Down
6 changes: 5 additions & 1 deletion packaging/rpm/ansible.spec
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
%define name ansible
%define ansible_version $VERSION

%if 0%{?rhel} == 5
%define __python /usr/bin/python26
%endif

Name: %{name}
Version: 1.6.1
Version: %{ansible_version}
Release: 1%{?dist}
Url: http://www.ansible.com
Summary: SSH-based application deployment, configuration management, and IT orchestration platform
Expand Down Expand Up @@ -114,6 +115,9 @@ rm -rf %{buildroot}

%changelog

* Fri May 23 2014 Michael DeHaan <[email protected]> - 1.6.2
- Release 1.6.2

* Wed May 07 2014 Michael DeHaan <[email protected]> - 1.6.1
- Release 1.6.1

Expand Down

0 comments on commit ce4883b

Please sign in to comment.