Version bump for release 1.7.2

release1.7.2
James Cammarata 10 years ago
parent 39d85a9bf5
commit ed0eeb3d58

@ -4,6 +4,15 @@ Ansible Changes By Release
## 1.8 "You Really Got Me" - Active Development
## 1.7.2 "Summer Nights" - Sep 24, 2014
- Fixes a bug in accelerate mode which caused a traceback when trying to use that connection method.
- Fixes a bug in vault where the password file option was not being used correctly internally.
- Improved multi-line parsing when using YAML literal blocks (using > or |).
- Fixed a bug with the file module and the creation of relative symlinks.
- Fixed a bug where checkmode was not being honored during the templating of files.
- Other various bug fixes.
## 1.7.1 "Summer Nights" - Aug 14, 2014
- Security fix to disallow specifying 'args:' as a string, which could allow the insertion of extra module parameters through variables.

@ -6,6 +6,7 @@ Active Development
1.8 "You Really Got Me" ---- FALL 2014
1.7.2 "Summer Nights" -------- 09-24-2014
1.7.1 "Summer Nights" -------- 08-14-2014
1.7 "Summer Nights" -------- 08-06-2014
1.6.10 "The Cradle Will Rock" - 07-25-2014

@ -1 +1 @@
1.7.1
1.7.2

@ -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.7.1'
__version__ = '1.7.2'
__author__ = 'Michael DeHaan'

@ -1,3 +1,9 @@
ansible (1.7.2) unstable; urgency=low
* 1.7.2 release
-- Michael DeHaan <michael@ansible.com> Wed, 24 Sep 2014 15:00:00 -0500
ansible (1.7.1) unstable; urgency=low
* 1.7.1 release

@ -115,6 +115,9 @@ rm -rf %{buildroot}
%changelog
* Wed Sep 24 2014 Michael DeHaan <michael@ansible.com> - 1.7.2
- Release 1.7.2
* Thu Aug 14 2014 Michael DeHaan <michael@ansible.com> - 1.7.1
- Release 1.7.1

Loading…
Cancel
Save