From 5819fff2c56e92d5207a8faa1b6280e95a0b02ee Mon Sep 17 00:00:00 2001 From: Chris Grigg Date: Fri, 9 Jan 2015 17:08:22 -0500 Subject: [PATCH 1/2] update gemspec to require neo4j-core 4.0.0 --- neo4j.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo4j.gemspec b/neo4j.gemspec index 144e32ab9..2c19845c3 100644 --- a/neo4j.gemspec +++ b/neo4j.gemspec @@ -31,7 +31,7 @@ A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks h s.add_dependency("activesupport", "~> 4") s.add_dependency("railties", "~> 4") s.add_dependency('active_attr', "~> 0.8") - s.add_dependency("neo4j-core", "~> 3.1.0") + s.add_dependency("neo4j-core", "~> 4.0.0") if RUBY_PLATFORM =~ /java/ s.add_dependency("neo4j-community", '~> 2.0') From c95fdd693a4844d3ddf1b2df890e7efdd83492af Mon Sep 17 00:00:00 2001 From: Chris Grigg Date: Fri, 9 Jan 2015 17:08:36 -0500 Subject: [PATCH 2/2] bump to 4.0.0 --- CHANGELOG | 7 +++++-- lib/neo4j/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6396f2eb9..12f93c0ad 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +== 4.0.0 +* Change neo4j-core dependency from 3.1.0 to 4.0.0. + == 4.0.0.rc.4 * _classname property is disabled by default for ActiveRel! It had been disabled for ActiveNode, this just evens the score. * Fixes a bug to create better `result` labels in Cypher. @@ -9,8 +12,8 @@ Released minutes after rc.2 to catch one late addition! == 4.0.0.rc.2 This release builds on features introduced in the first RC. We are releasing this as another RC because the API may be tweaked before release. -* New `proxy_as` for Core::Query to build QueryProxy chains onto Core::Query objects! -* Using `proxy_as`, new `optional` method in QueryProxy to use the `OPTIONAL MATCH` Cypher function. +* New `proxy_as` for Core::Query to build QueryProxy chains onto Core::Query objects! +* Using `proxy_as`, new `optional` method in QueryProxy to use the `OPTIONAL MATCH` Cypher function. * `match_to` and methods that depend on it now support arrays of nodes or IDs. * New `rels_to`/`all_rels_to` methods. * New `delete` and `destroy` methods in QueryProxy to easily remove relationships. diff --git a/lib/neo4j/version.rb b/lib/neo4j/version.rb index 2d91f8756..cafc16bcd 100644 --- a/lib/neo4j/version.rb +++ b/lib/neo4j/version.rb @@ -1,3 +1,3 @@ module Neo4j - VERSION = "4.0.0.rc.4" + VERSION = "4.0.0" end