summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@gmail.com>2011-12-25 16:29:52 +0400
committerAlexander Shorin <kxepal@gmail.com>2011-12-25 16:29:52 +0400
commitf89f6393e2682ef6182c642b1f86b61a543980a0 (patch)
treeb4af991ebf62d8b920eb38f294a111e2ea349744
parent07b0af061f286b2f93a7e4848c19cdf91a8387b8 (diff)
downloadpython-json-patch-f89f6393e2682ef6182c642b1f86b61a543980a0.tar.gz
Bump supported specification version
-rw-r--r--README2
-rw-r--r--jsonpatch.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 24750ed..b0f910d 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ python-json-patch: Applying JSON Patches
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Library to apply JSON Patches according to
-http://tools.ietf.org/html/draft-pbryan-json-patch-01
+http://tools.ietf.org/html/draft-pbryan-json-patch-04
See Sourcecode for Examples
diff --git a/jsonpatch.py b/jsonpatch.py
index db4dd75..f537136 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -30,7 +30,7 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-"""Apply JSON-Patches according to http://tools.ietf.org/html/draft-pbryan-json-patch-01"""
+"""Apply JSON-Patches according to http://tools.ietf.org/html/draft-pbryan-json-patch-04"""
# Will be parsed by setup.py to determine package metadata
__author__ = 'Stefan Kögl <stefan@skoegl.net>'