Skip to content

Commit

Permalink
bump to version 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
subvertallchris committed Dec 25, 2014
1 parent 3ac5162 commit bc7d7ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
== 3.1.1
* Force more basic, common queries to use params. Early benchmarks suggest big performance improvements.
* Auth improvements. You can now use a valid Neo4j token with any username to authenticate.

== 3.1.0
* Swapped out `START n=node...` for `MATCH (n) WHERE ID(n)...` for compatibility with Neo4j 2.2.
* Added a new class, CypherAuthentication, to support Neo4j 2.2's new authentication endpoint.
Expand Down
2 changes: 1 addition & 1 deletion lib/neo4j-core/version.rb
@@ -1,5 +1,5 @@
module Neo4j
module Core
VERSION = "3.1.0"
VERSION = "3.1.1"
end
end
9 changes: 4 additions & 5 deletions neo4j-core.gemspec
Expand Up @@ -6,13 +6,12 @@ require 'neo4j-core/version'
Gem::Specification.new do |s|
s.name = "neo4j-core"
s.version = Neo4j::Core::VERSION
s.required_ruby_version = ">= 1.8.7"
s.required_ruby_version = ">= 1.9.3"

s.authors = "Andreas Ronge"
s.email = 'andreas.ronge@gmail.com'
s.authors = "Andreas Ronge, Chris Grigg, Brian Underwood"
s.email = 'andreas.ronge@gmail.com, chris@subvertallmedia.com, brian@brian-underwood.codes'
s.homepage = "https://github.com/neo4jrb/neo4j-core"
s.rubyforge_project = 'neo4j-core'
s.summary = "A graph database for Ruby"
s.summary = "A basic library to work with the graph database Neo4j."
s.license = 'MIT'

s.description = <<-EOF
Expand Down

0 comments on commit bc7d7ed

Please sign in to comment.