diff options
author | Tim Bielawa <tbielawa@redhat.com> | 2012-05-01 11:35:49 -0400 |
---|---|---|
committer | Tim Bielawa <tbielawa@redhat.com> | 2012-05-01 11:35:49 -0400 |
commit | 38c3f28ffb384f458a969855e9eca3fb6bd3023e (patch) | |
tree | 6df395cb678374532ce808da0643ff67908dcc41 | |
parent | 67824918f0262c58f5eae632034009720acbe2f6 (diff) | |
download | ansible-38c3f28ffb384f458a969855e9eca3fb6bd3023e.tar.gz |
Version bump
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | docs/man/man1/ansible-playbook.1 | 4 | ||||
-rw-r--r-- | docs/man/man1/ansible.1 | 4 | ||||
-rw-r--r-- | lib/ansible/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -1 +1 @@ -0.3 +0.3.1 diff --git a/docs/man/man1/ansible-playbook.1 b/docs/man/man1/ansible-playbook.1 index 8b0bc5f797..93be1a7cf0 100644 --- a/docs/man/man1/ansible-playbook.1 +++ b/docs/man/man1/ansible-playbook.1 @@ -4,10 +4,10 @@ .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Date: 05/01/2012 .\" Manual: System administration commands -.\" Source: Ansible 0.3 +.\" Source: Ansible 0.3.1 .\" Language: English .\" -.TH "ANSIBLE\-PLAYBOOK" "1" "05/01/2012" "Ansible 0\&.3" "System administration commands" +.TH "ANSIBLE\-PLAYBOOK" "1" "05/01/2012" "Ansible 0\&.3\&.1" "System administration commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/docs/man/man1/ansible.1 b/docs/man/man1/ansible.1 index 6769b59f05..e235ac6d43 100644 --- a/docs/man/man1/ansible.1 +++ b/docs/man/man1/ansible.1 @@ -4,10 +4,10 @@ .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Date: 05/01/2012 .\" Manual: System administration commands -.\" Source: Ansible 0.3 +.\" Source: Ansible 0.3.1 .\" Language: English .\" -.TH "ANSIBLE" "1" "05/01/2012" "Ansible 0\&.3" "System administration commands" +.TH "ANSIBLE" "1" "05/01/2012" "Ansible 0\&.3\&.1" "System administration commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/ansible/__init__.py b/lib/ansible/__init__.py index 2cef953897..13877388f0 100644 --- 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 <http://www.gnu.org/licenses/>. -__version__ = '0.3' +__version__ = '0.3.1' __author__ = 'Michael DeHaan' @@ -17,7 +17,7 @@ setup(name='ansible', author=__author__, author_email='michael.dehaan@gmail.com', url='http://ansible.github.com/', - license='GPLv3', + license='GPLv3+', install_requires=['paramiko', 'jinja2', "PyYAML"], package_dir={ 'ansible': 'lib/ansible' }, packages=[ |