Skip to content

Commit

Permalink
release 2.0.0-RC6
Browse files Browse the repository at this point in the history
  • Loading branch information
philippkueng committed Feb 22, 2014
1 parent 7c12876 commit e8e86db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -7,7 +7,7 @@ master branch: [![Build Status](https://travis-ci.org/philippkueng/node-neo4j.pn
## Installation

npm install node-neo4j
npm install node-neo4j@2.0.0-RC5 (to get all the Neo4j 2.0.0 features)
npm install node-neo4j@2.0.0-RC6 (to get all the Neo4j 2.0.0 features)

## Usage

Expand All @@ -27,7 +27,7 @@ Navigate to the node module and run the tests:

$ npm test

All tests should pass if you're running the latest version of Neo4j. (Neo4j 2.0.0-RC5)
All tests should pass if you're running the latest version of Neo4j. (Neo4j 2.0.0-RC6)
We try to update the module as fast as possible if there's a new version of Neo4j.
Don't be shy to give remarks or report bugs. We would be glad to fix them.
You can contact use on Twitter [https://twitter.com/Stofkn](@Stofkn) or [https://twitter.com/philippkueng](@philippkueng) or mail us (check package.json).
Expand Down Expand Up @@ -114,7 +114,7 @@ Take a look at the test.main.js file in the test folder for many examples.
console.log(node.data);
// Output node id.
console.log(node.id); /* for 2.0.0-RC5, use: console.log(node._id) */
console.log(node.id); /* for 2.0.0-RC6, use: console.log(node._id) */
});

**Read a Node**
Expand All @@ -126,7 +126,7 @@ Take a look at the test.main.js file in the test folder for many examples.
console.log(node.data);
// Output node id.
console.log(node.id); /* for 2.0.0-RC5, use: console.log(node._id) */
console.log(node.id); /* for 2.0.0-RC6, use: console.log(node._id) */
});

**Update a Node**
Expand Down Expand Up @@ -201,13 +201,13 @@ Returns the number of deleted nodes e.g.: 1.
console.log(relationship.data);

// Output relationship id.
console.log(relationship.id); /* for 2.0.0-RC5, use: console.log(relationship._id) */
console.log(relationship.id); /* for 2.0.0-RC6, use: console.log(relationship._id) */

// Output relationship start_node_id.
console.log(relationship.start_node_id); /* for 2.0.0-RC5, use: console.log(relationship._start) */
console.log(relationship.start_node_id); /* for 2.0.0-RC6, use: console.log(relationship._start) */

// Output relationship end_node_id.
console.log(relationship.end_node_id); /* for 2.0.0-RC5, use: console.log(relationship._end) */
console.log(relationship.end_node_id); /* for 2.0.0-RC6, use: console.log(relationship._end) */
});

**Read a Relationship**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"author": "Philipp Küng <git@philippkueng.ch> (http://philippkueng.ch)",
"name": "node-neo4j",
"description": "Neo4j REST API wrapper for Node.js",
"version": "2.0.0-RC5",
"version": "2.0.0-RC6",
"repository": {
"type": "git",
"url": "https://github.com/philippkueng/node-neo4j.git"
Expand Down

0 comments on commit e8e86db

Please sign in to comment.