From e8e86db329ef517839a46861abd5beae81514e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88ng?= Date: Sun, 23 Feb 2014 00:30:56 +0100 Subject: [PATCH] release 2.0.0-RC6 --- README.md | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index dbcfe14..ae88c97 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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). @@ -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** @@ -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** @@ -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** diff --git a/package.json b/package.json index 54d16ac..119adfb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Philipp Küng (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"