From 8c4a3e7b57164d8cb0da75db3be08587d0f0b173 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 13 Mar 2016 14:43:13 +0200
Subject: [PATCH] - Remove debug, update README, bump version to 0.2.0.

---
 README.rst         | 18 ++++++++++++++++--
 VERSION            |  2 +-
 ansible-pre-commit |  2 +-
 3 files changed, 18 insertions(+), 4 deletions(-)

diff --git a/README.rst b/README.rst
index 3e59edc..8cc780b 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@ Ansible pre-commit hook
 #######################
 
 Ansible `pre-commit <http://pre-commit.com/>`_ hook. The hook runs
-:code:`ansible --syntax-check` against playbooks found.
+:code:`ansible --syntax-check` against playbooks declared.
 
 Usage
 -----
@@ -12,7 +12,21 @@ Add the following to your :code:`.pre-commit-config.yaml`:
 .. :code: yaml
 
     - repo: https://www.shore.co.il/git/ansible-pre-commit/
-      sha: v0.1.0
+      sha: v0.2.0
       hooks:
       - id: ansible-pre-commit
         files: playbook.yml
+
+License
+-------
+
+This software is licensed under the AGPL v3+ license (see the :code:`LICENSE.txt`
+file).
+
+Author Information
+------------------
+
+Nimrod Adar, `contact me <nimrod@shore.co.il>`_ or visit my `website
+<https://www.shore.co.il/>`_. Patches are welcome via `git send-email
+<http://git-scm.com/book/en/v2/Git-Commands-Email>`_. The repository is located
+at: https://www.shore.co.il/git/.
diff --git a/VERSION b/VERSION
index d917d3e..0ea3a94 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.2
+0.2.0
diff --git a/ansible-pre-commit b/ansible-pre-commit
index e583ee3..7146d9c 100755
--- a/ansible-pre-commit
+++ b/ansible-pre-commit
@@ -1,5 +1,5 @@
 #!/bin/sh -e
-echo "$@"
+
 for playbook in $@
 do
     ANSIBLE_ROLES_PATH=../ ansible-playbook \
-- 
GitLab