From 8b6a4efc3c27e0d1f24b31f814e726b4a4a8cafc Mon Sep 17 00:00:00 2001 From: Chris Grigg Date: Fri, 9 Jan 2015 17:55:56 -0500 Subject: [PATCH] bump to 4.1.0 --- CHANGELOG | 10 ++++++++++ lib/neo4j/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 12f93c0ad..8cd06031e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +== 4.1.0 +This release includes many performance fixes and new features. The most notable: +* Huge stylist cleanup/refactoring by Brian on the entire gem by Brian armed with Rubocop. See http://neo4jrb.io/blog/2014/12/29/stay-out-of-trouble.html. +* Every node create, update, and destroy is now wrapped in a transaction. See http://neo4jrb.io/blog/2015/01/06/transactions_everywhere.html. +* New `dependent` options for associations: `:delete`, `:destroy`, `:delete_orphans`, `:destroy_orphans`. See http://neo4jrb.io/blog/2015/01/07/association_dependent_options.html. +* New `unique: true` option for associations, `creates_unique_rel` class method for ActiveRel. Both of these will result in relationship creation Cypher using "CREATE UNIQUE" instead of "CREATE". +* Fixed an n+1 query issue during node creation and update. +* Dieter simplified some code related to frozen attributes. See https://github.com/neo4jrb/neo4j/pull/655. +We now have a new website online at http://neo4jrb.io! Keep an eye on it for news and blogs related to this and other projects. + == 4.0.0 * Change neo4j-core dependency from 3.1.0 to 4.0.0. diff --git a/lib/neo4j/version.rb b/lib/neo4j/version.rb index a0858bb0a..662b323b8 100644 --- a/lib/neo4j/version.rb +++ b/lib/neo4j/version.rb @@ -1,3 +1,3 @@ module Neo4j - VERSION = '4.0.0' + VERSION = '4.1.0' end