diff options
| -rw-r--r-- | jsonpatch.py | 4 | ||||
| -rw-r--r-- | requirements.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/jsonpatch.py b/jsonpatch.py index c5eca85..3e3883d 100644 --- a/jsonpatch.py +++ b/jsonpatch.py @@ -30,13 +30,13 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -""" Apply JSON-Patches (according to draft 06) """ +""" Apply JSON-Patches (according to draft 08) """ # 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.9' +__version__ = '0.11' __website__ = 'https://github.com/stefankoegl/python-json-patch' __license__ = 'Modified BSD License' diff --git a/requirements.txt b/requirements.txt index fa2630e..5cd37da 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -jsonpointer>=0.5 +jsonpointer>=0.6 |
