From f89f6393e2682ef6182c642b1f86b61a543980a0 Mon Sep 17 00:00:00 2001 From: Alexander Shorin Date: Sun, 25 Dec 2011 16:29:52 +0400 Subject: [PATCH] Bump supported specification version --- README | 2 +- jsonpatch.py | 2 +- 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 '