From 4ae82893dc0f44609e5e8df477e4fc743d9dc00c Mon Sep 17 00:00:00 2001 From: Andreas Ronge Date: Wed, 14 Dec 2011 10:41:40 +0100 Subject: [PATCH] Release 1.3.1 --- CHANGELOG | 14 ++++++++++++++ CONTRIBUTORS | 1 + README.rdoc | 7 ++++--- lib/neo4j/identity_map.rb | 3 --- lib/neo4j/version.rb | 2 +- 5 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0fd89a828..74277cc41 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ + == 1.3.1 / 2011-12-14 +* Make all relationships visible in Rails callback (rspecs #87, Dmytrii Nagirniak) [#211] +* Enable travis to build JRuby 1.9 (pull #87, Dmytrii Nagirniak) [#214] +* Support for composite lucene queries with OR and NOT (pull #89, Deepak N) +* Enforce the correct converter on a property type when the type is given (pull #86, Dmytrii Nagirniak) +* Development: make it easier to run RSpecs and guard (pull #85, Dmytrii Nagirniak) +* Added ability to disable observer (pull #84, Dmytrii Nagirniak) +* Fixing multiple assignment of has_one assocaition (pull #83 Deepak N) +* Accept association_id for has_one assocations (pull #82, Deepak N) +* Upgrade to 1.6.M01 Neo4j java jars [#209] +* Defer warning message 'Unknown outgoing relationship' (pull #81, Vivek Prahlad) +* Added string converter, e.g. property :name, :type => String (pull #80, Dmytrii Nagirniak) +* Added symbol converter e.g. property :status, :type => Symbol (pull #79, Dmytrii Nagirniak) [#205] + == 1.3.0 / 2011-12-06 * Added neo4j-upgrade script to rename lucene index files and upgrade to 1.5 [#197] * Expose Neo4j::NodeMixin#index_types returning available indices (useful for Cypher queries) [#194] diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 10ce130a1..419740bd6 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2,6 +2,7 @@ Maintainer: Andreas Ronge Contributors: +* Dmytrii Nagirniak * Marcio Toshio * Kalyan Akella * Vivek Prahlad diff --git a/README.rdoc b/README.rdoc index 0ac6bf533..591ea9ebe 100644 --- a/README.rdoc +++ b/README.rdoc @@ -126,19 +126,20 @@ Notice that you can always access the lower layers if you want to do some more a === Project information * {GitHub}[http://github.com/andreasronge/neo4j/tree/master] -* {Lighthouse Issue Tracking}[http://neo4j.lighthouseapp.com] +* {Issue Tracking}[https://github.com/andreasronge/neo4j/issues] * {Twitter}[http://twitter.com/ronge] -* IRC - #neo4j @ irc.freenode.net * {Mailing list, neo4jrb@googlegroups.com}[http://groups.google.com/group/neo4jrb] +* {Read only, old lighthouse issues}[http://neo4j.lighthouseapp.com] === Contributing {}[http://travis-ci.org/andreasronge/neo4j] +{Development configuration}[http://neo4j.rubyforge.org/guides/index.html#development-and-testing-configuration] + Have you found a bug, need help or have a patch ? Just clone neo4j.rb and send me a pull request or email me. Do you need help - send me an email (andreas.ronge at gmail dot com). -Please also check/add issues at lighthouse, http://neo4j.lighthouseapp.com === License * Neo4j.rb - MIT, see the LICENSE file http://github.com/andreasronge/neo4j/tree/master/LICENSE. diff --git a/lib/neo4j/identity_map.rb b/lib/neo4j/identity_map.rb index c2fb5d02c..ddcfb91ec 100644 --- a/lib/neo4j/identity_map.rb +++ b/lib/neo4j/identity_map.rb @@ -1,6 +1,3 @@ -# https://github.com/rails/rails/blob/master/activerecord/lib/active_record/identity_map.rb -# https://github.com/rails/rails/pull/76 - module Neo4j # = Neo4j Identity Map diff --git a/lib/neo4j/version.rb b/lib/neo4j/version.rb index 8b6f31d82..1560b050a 100644 --- a/lib/neo4j/version.rb +++ b/lib/neo4j/version.rb @@ -1,3 +1,3 @@ module Neo4j - VERSION = "1.3.0" + VERSION = "1.3.1" end