From 5aad4bacc7e169a34f8b1d660ef7696c2460ba6d Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Tue, 3 Apr 2012 09:51:05 -0400 Subject: [PATCH] Bump release to 0.0.2 --- ansible.spec | 5 ++++- docs/man/man1/ansible-playbook.1 | 6 +++--- docs/man/man1/ansible-playbook.1.asciidoc | 2 +- docs/man/man1/ansible.1 | 6 +++--- docs/man/man1/ansible.1.asciidoc | 2 +- lib/ansible/__init__.py | 2 +- 6 files changed, 13 insertions(+), 10 deletions(-) diff --git a/ansible.spec b/ansible.spec index e2ef116bff9..3c2fcd18533 100644 --- a/ansible.spec +++ b/ansible.spec @@ -3,7 +3,7 @@ Name: ansible Release: 1 Summary: Minimal SSH command and control -Version: 0.0.1 +Version: 0.0.2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot Group: Development/Libraries @@ -54,5 +54,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Apr 3 2012 John Eckersberg - 0.0.2-1 +- Release of 0.0.2 + * Sat Mar 10 2012 - 0.0.1-1 - Release of 0.0.1 diff --git a/docs/man/man1/ansible-playbook.1 b/docs/man/man1/ansible-playbook.1 index b9bef5cdcfe..dae09d1e866 100644 --- a/docs/man/man1/ansible-playbook.1 +++ b/docs/man/man1/ansible-playbook.1 @@ -2,12 +2,12 @@ .\" Title: ansible-playbook .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 03/23/2012 +.\" Date: 04/03/2012 .\" Manual: System administration commands -.\" Source: Ansible 0.0.1 +.\" Source: Ansible 0.0.2 .\" Language: English .\" -.TH "ANSIBLE\-PLAYBOOK" "1" "03/23/2012" "Ansible 0\&.0\&.1" "System administration commands" +.TH "ANSIBLE\-PLAYBOOK" "1" "04/03/2012" "Ansible 0\&.0\&.2" "System administration commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/docs/man/man1/ansible-playbook.1.asciidoc b/docs/man/man1/ansible-playbook.1.asciidoc index 6a54b4353ee..b7816bd2e9f 100644 --- a/docs/man/man1/ansible-playbook.1.asciidoc +++ b/docs/man/man1/ansible-playbook.1.asciidoc @@ -2,7 +2,7 @@ ansible-playbook(1) =================== :doctype:manpage :man source: Ansible -:man version: 0.0.1 +:man version: 0.0.2 :man manual: System administration commands NAME diff --git a/docs/man/man1/ansible.1 b/docs/man/man1/ansible.1 index b0273fa0dab..1e61d7ce984 100644 --- a/docs/man/man1/ansible.1 +++ b/docs/man/man1/ansible.1 @@ -2,12 +2,12 @@ .\" Title: ansible .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.76.1 -.\" Date: 03/23/2012 +.\" Date: 04/03/2012 .\" Manual: System administration commands -.\" Source: Ansible 0.0.1 +.\" Source: Ansible 0.0.2 .\" Language: English .\" -.TH "ANSIBLE" "1" "03/23/2012" "Ansible 0\&.0\&.1" "System administration commands" +.TH "ANSIBLE" "1" "04/03/2012" "Ansible 0\&.0\&.2" "System administration commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/docs/man/man1/ansible.1.asciidoc b/docs/man/man1/ansible.1.asciidoc index c7604cd3282..6d08394e820 100644 --- a/docs/man/man1/ansible.1.asciidoc +++ b/docs/man/man1/ansible.1.asciidoc @@ -2,7 +2,7 @@ ansible(1) ========= :doctype:manpage :man source: Ansible -:man version: 0.0.1 +:man version: 0.0.2 :man manual: System administration commands NAME diff --git a/lib/ansible/__init__.py b/lib/ansible/__init__.py index edc0ce3ebc3..1ea0127ab18 100755 --- a/lib/ansible/__init__.py +++ b/lib/ansible/__init__.py @@ -14,5 +14,5 @@ # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . -__version__ = '0.0.1' +__version__ = '0.0.2' __author__ = 'Michael DeHaan'