From 91ed9bb2e92039eede6a15cc61a724071635b637 Mon Sep 17 00:00:00 2001 From: Andreas Ronge Date: Wed, 27 Aug 2014 13:13:26 +0200 Subject: [PATCH] release 3.0.0.rc.1 --- CHANGELOG | 8 +++++++- Gemfile | 2 +- README.md | 27 ++++++++++++++++++--------- neo4j.gemspec | 2 +- 4 files changed, 27 insertions(+), 12 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 62a2d0635..c5dc242d5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@ +== 3.0.0.rc.1 +* Support for count, size, length, empty, blank? for has_many relationship +* Support for rails logger of cypher queries in development +* Support for distinct count +* Optimized methods: https://github.com/andreasronge/neo4j/wiki/Optimized-Methods +* Queries should respect mapped label names (#421) * Warn if no session is available -* Fix broken == and equality +* Fix broken == and equality (#424) == 3.0.0.alpha.11 * Bug fixes diff --git a/Gemfile b/Gemfile index df0e93875..dbede68aa 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source 'http://rubygems.org' gemspec #gem 'neo4j-core', path: '../neo4j-core' -gem 'neo4j-core', :git => 'https://github.com/andreasronge/neo4j-core.git' +#gem 'neo4j-core', :git => 'https://github.com/andreasronge/neo4j-core.git' #gem 'orm_adapter', :path => '../orm_adapter' gem 'coveralls', require: false diff --git a/README.md b/README.md index 7dbd71014..2e6540572 100644 --- a/README.md +++ b/README.md @@ -2,22 +2,31 @@ Neo4j.rb is an Active Model compliant Ruby/JRuby wrapper for [the Neo4j graph database](http://www.neo4j.org/). It uses the [neo4j-core](https://github.com/andreasronge/neo4j-core) and [active_attr](https://github.com/cgriego/active_attr) gems. -## Version 3.0.0.alpha.X +## Documentation version 3.0.0.rc -Unstable ! +* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j.rb-v3-Introduction) -* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j-v3) -* [Basic Rails 4 Example](https://github.com/andreasronge/neo4j/blob/master/example/blog/README.md) +## Documentation Old stable version 2.x -## Version 2.x +* [README](https://github.com/andreasronge/neo4j/tree/2.x) +* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j%3A%3ARails-Introduction) + +## Support + +* [Neo4j.rb mailing list](https://groups.google.com/forum/#!forum/neo4jrb) +* Consulting support ? ask any of the developers + +## Developers + +* [Andreas Ronge](https://github.com/andreasronge) +* [Brian Underwood](https://github.com/cheerfulstoic) +* [Chris Grigg](https://github.com/subvertallchris) -For the stable 2.x version, see [here](https://github.com/andreasronge/neo4j/tree/2.x) ## Contributing -* 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). +Pull request with high test coverage and good [code climate](https://codeclimate.com/github/andreasronge/neo4j-core) values will be accepted faster. + ## License diff --git a/neo4j.gemspec b/neo4j.gemspec index 63f621780..17d689481 100644 --- a/neo4j.gemspec +++ b/neo4j.gemspec @@ -34,7 +34,7 @@ It comes included with the Apache Lucene document database. s.add_dependency("activesupport", "~> 4") s.add_dependency("railties", "~> 4") s.add_dependency('active_attr', "~> 0.8") - s.add_dependency("neo4j-core", "= 3.0.0.alpha.19") + s.add_dependency("neo4j-core", "= 3.0.0.rc.1") if RUBY_PLATFORM =~ /java/ s.add_dependency("neo4j-community", '~> 2.0')