Commit ce4883bc by James Cammarata

Version bump for 1.6.2

parent a75a84b4
Ansible Changes By Release 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 ## 1.6.1 "And the Cradle Will Rock" - May 7, 2014
- Fixed a bug in group_by, where systems were being grouped incorrectly. - Fixed a bug in group_by, where systems were being grouped incorrectly.
......
...@@ -6,6 +6,7 @@ Active Development ...@@ -6,6 +6,7 @@ Active Development
1.7 "Summer Nights" -------- CURRENT DEVEL BRANCH 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.1 "The Cradle Will Rock" - 05-07-2014
1.6 "The Cradle Will Rock" - 05-05-2014 1.6 "The Cradle Will Rock" - 05-05-2014
1.5.5 "Love Walks In" -------- 04-18-2014 1.5.5 "Love Walks In" -------- 04-18-2014
......
...@@ -14,5 +14,5 @@ ...@@ -14,5 +14,5 @@
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
__version__ = '1.6.1' __version__ = '1.6.2'
__author__ = 'Michael DeHaan' __author__ = 'Michael DeHaan'
ansible (1.6.2) unstable; urgency=low
* 1.6.2 release
-- Michael DeHaan <michael.dehaan@gmail.com> Fri, 23 May 2014 17:30:00 -0500
ansible (1.6.1) unstable; urgency=low ansible (1.6.1) unstable; urgency=low
* 1.6.1 release * 1.6.1 release
......
%define name ansible %define name ansible
%define ansible_version $VERSION
%if 0%{?rhel} == 5 %if 0%{?rhel} == 5
%define __python /usr/bin/python26 %define __python /usr/bin/python26
%endif %endif
Name: %{name} Name: %{name}
Version: 1.6.1 Version: %{ansible_version}
Release: 1%{?dist} Release: 1%{?dist}
Url: http://www.ansible.com Url: http://www.ansible.com
Summary: SSH-based application deployment, configuration management, and IT orchestration platform Summary: SSH-based application deployment, configuration management, and IT orchestration platform
...@@ -114,6 +115,9 @@ rm -rf %{buildroot} ...@@ -114,6 +115,9 @@ rm -rf %{buildroot}
%changelog %changelog
* Fri May 23 2014 Michael DeHaan <michael@ansible.com> - 1.6.2
- Release 1.6.2
* Wed May 07 2014 Michael DeHaan <michael@ansible.com> - 1.6.1 * Wed May 07 2014 Michael DeHaan <michael@ansible.com> - 1.6.1
- Release 1.6.1 - Release 1.6.1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment