Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbachmann committed Sep 29, 2015
1 parent dc1e2c6 commit 3537776
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ jsonpointer.get(obj, '/quo'); // returns null
jsonpointer.set(obj, '/foo', 6); // sets obj.foo = 6;
jsonpointer.set(obj, '/qux/-', 6) // sets obj.qux = [3, 4, 5, 6]

pointer = jsonpointer.compile('/foo')
var pointer = jsonpointer.compile('/foo')
pointer.get(obj) // returns 1
pointer.set(obj, 1) // sets obj.foo = 1
```
Expand Down
7 changes: 4 additions & 3 deletions package.json
Expand Up @@ -7,10 +7,11 @@
"util",
"utility"
],
"version": "2.0.0",
"version": "3.0.0",
"author": "Jan Lehnardt <jan@apache.org>",
"contributors": [
"Joe Hildebrand <joe-github@cursive.net>"
"Joe Hildebrand <joe-github@cursive.net>",
"Marc Bachmann <marc.brookman@gmail.com>"
],
"repository": {
"type": "git",
Expand All @@ -20,7 +21,7 @@
"url": "http://github.com/janl/node-jsonpointer/issues"
},
"engines": {
"node": ">=0.6.0"
"node": ">=0.10.0"
},
"main": "./jsonpointer",
"scripts": {
Expand Down

0 comments on commit 3537776

Please sign in to comment.