summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2012-11-08 15:56:20 +0100
committerStefan Kögl <stefan@skoegl.net>2012-11-08 16:06:25 +0100
commit0babb1456d9e6c9e9fb2e9e9129973ab1795b0e4 (patch)
tree0fc9bcf440be484039a09b652941810f1cd4ded4
parent16d29f8fa10664a92f27b47d617260f0e5d13b9a (diff)
downloadpython-json-pointer-0babb1456d9e6c9e9fb2e9e9129973ab1795b0e4.tar.gz
bump version to 0.4v0.4
-rw-r--r--jsonpointer.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/jsonpointer.py b/jsonpointer.py
index 9897858..e0078b9 100644
--- a/jsonpointer.py
+++ b/jsonpointer.py
@@ -30,12 +30,13 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-""" Identify specific nodes in a JSON document according to
-http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-05 """
+""" Identify specific nodes in a JSON document (according to draft 05) """
+
+# http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-05
# Will be parsed by setup.py to determine package metadata
__author__ = 'Stefan Kögl <stefan@skoegl.net>'
-__version__ = '0.3'
+__version__ = '0.4'
__website__ = 'https://github.com/stefankoegl/python-json-pointer'
__license__ = 'Modified BSD License'