summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2012-09-28 19:06:44 +0200
committerStefan Kögl <stefan@skoegl.net>2012-09-28 19:06:44 +0200
commit183c97af356a1cf7a4ac2b83dd2a44ff00718670 (patch)
tree950bda56488b2241912e876b7873eb67e95dec2d
parent33ad0dc629b7802fa084afa2a23a9599c224fc40 (diff)
downloadpython-json-patch-183c97af356a1cf7a4ac2b83dd2a44ff00718670.tar.gz
bump version to 0.6, support for draft 5v0.6
http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-05
-rw-r--r--jsonpatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonpatch.py b/jsonpatch.py
index 1244d60..49cca59 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -31,11 +31,11 @@
#
"""Apply JSON-Patches according to
-http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-04"""
+http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-05"""
# Will be parsed by setup.py to determine package metadata
__author__ = 'Stefan Kögl <stefan@skoegl.net>'
-__version__ = '0.5'
+__version__ = '0.6'
__website__ = 'https://github.com/stefankoegl/python-json-patch'
__license__ = 'Modified BSD License'