summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2012-11-15 11:26:57 +0100
committerStefan Kögl <stefan@skoegl.net>2012-11-15 11:29:08 +0100
commit5d8aa7f114fc53598e5d73101858969d5258aa68 (patch)
tree590c422c7ab67df9a342f753ba99b299a79d869a
parent2b8d859dbf2037d348745506049e471226c2ccbe (diff)
downloadpython-json-patch-0.8.tar.gz
bump version to 0.8v0.8
-rw-r--r--jsonpatch.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/jsonpatch.py b/jsonpatch.py
index 5424915..4eb678c 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -30,12 +30,13 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-"""Apply JSON-Patches according to
-http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-05"""
+""" Apply JSON-Patches (according to draft 06) """
+
+# 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.7'
+__version__ = '0.8'
__website__ = 'https://github.com/stefankoegl/python-json-patch'
__license__ = 'Modified BSD License'