Skip to content

Commit cde0039

Browse files
committed
Merge branch 1.0 into 1.1
2 parents b738700 + 024de39 commit cde0039

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,21 @@ Resources to get you started:
1313

1414
## Include module in Node.js application
1515

16+
Stable channel:
1617
```shell
1718
npm install neo4j-driver
1819
// or
1920
bower install neo4j-driver
2021
```
2122

23+
Pre-release channel:
24+
```shell
25+
npm install neo4j-driver@next
26+
```
27+
28+
Please note that `@next` only points to pre-releases that are not suitable for production use.
29+
To get the latest stable release omit `@next` part altogether or use `@latest` instead.
30+
2231
```javascript
2332
var neo4j = require('neo4j-driver').v1;
2433
```

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"stop-neo4j": "gulp stop-neo4j",
1717
"run-tck": "gulp run-tck",
1818
"docs": "esdoc -c esdoc.json",
19-
"versionRelease": "gulp set --version $VERSION && npm version $VERSION --no-git-tag-version",
20-
"publishRelease": "npm-publish-safe-latest next"
19+
"versionRelease": "gulp set --version $VERSION && npm version $VERSION --no-git-tag-version"
2120
},
2221
"main": "lib/index.js",
2322
"devDependencies": {
@@ -52,7 +51,6 @@
5251
"jasmine-reporters": "^2.0.7",
5352
"merge-stream": "^1.0.0",
5453
"minimist": "^1.2.0",
55-
"npm-publish-safe-latest": "^1.1.6",
5654
"phantomjs-prebuilt": "^2.1.7 ",
5755
"run-sequence": "^1.1.4",
5856
"semver": "^5.3.0",

0 commit comments

Comments
 (0)