diff options
author | Stefan Kögl <stefan@skoegl.net> | 2012-12-14 12:58:27 +0100 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2012-12-20 18:55:07 +0100 |
commit | 24629142104ec7c624fc5aaa975adc6fe9f89483 (patch) | |
tree | 6b8356c33205d2d77383028ebe185ffba8914036 /jsonpointer.py | |
parent | 1529f7dd0280c0480105f2169543a57873c2fe81 (diff) | |
download | python-json-pointer-24629142104ec7c624fc5aaa975adc6fe9f89483.tar.gz |
bump version to 0.6
Diffstat (limited to 'jsonpointer.py')
-rw-r--r-- | jsonpointer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jsonpointer.py b/jsonpointer.py index 4868b26..b84e958 100644 --- a/jsonpointer.py +++ b/jsonpointer.py @@ -30,13 +30,13 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -""" Identify specific nodes in a JSON document (according to draft 05) """ +""" Identify specific nodes in a JSON document (according to draft 07) """ -# http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-05 +# http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-07 # 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-pointer' __license__ = 'Modified BSD License' |