Skip to content

Commit 3537776

Browse files
committed
Version 3.0.0
1 parent dc1e2c6 commit 3537776

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jsonpointer.get(obj, '/quo'); // returns null
1717
jsonpointer.set(obj, '/foo', 6); // sets obj.foo = 6;
1818
jsonpointer.set(obj, '/qux/-', 6) // sets obj.qux = [3, 4, 5, 6]
1919

20-
pointer = jsonpointer.compile('/foo')
20+
var pointer = jsonpointer.compile('/foo')
2121
pointer.get(obj) // returns 1
2222
pointer.set(obj, 1) // sets obj.foo = 1
2323
```

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
"util",
88
"utility"
99
],
10-
"version": "2.0.0",
10+
"version": "3.0.0",
1111
"author": "Jan Lehnardt <[email protected]>",
1212
"contributors": [
13-
"Joe Hildebrand <[email protected]>"
13+
"Joe Hildebrand <[email protected]>",
14+
"Marc Bachmann <[email protected]>"
1415
],
1516
"repository": {
1617
"type": "git",
@@ -20,7 +21,7 @@
2021
"url": "http://github.com/janl/node-jsonpointer/issues"
2122
},
2223
"engines": {
23-
"node": ">=0.6.0"
24+
"node": ">=0.10.0"
2425
},
2526
"main": "./jsonpointer",
2627
"scripts": {

0 commit comments

Comments
 (0)