Skip to content

Commit cb374eb

Browse files
committed
Release 1.1.0
1 parent c1662bd commit cb374eb

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
== 0.4.4 / 2010-08-01
1+
== 1.1.0 / 2011-05-13
2+
* Support for embedding neo4j.rb by providing an already running db instance (#168)
3+
* Neo4j::Rails::Relationships should be ActiveModel compliant (#156)
4+
* Support for incoming relationships in Neo4j::Rails::Model (#157)
5+
* to_json method for models no tags √ resolved (#154)
6+
* Implement hash so that it will work with Sets (#160)
7+
* Modified the traverser to allow iterating over paths not just over end_nodes (#161)
8+
* Create method should take a block to initialize itself (#162)
9+
* Upgrade to 1.3 neo4j java library (#164)
10+
* Default `nodes' invocation for Algo path finders (#165)
11+
* Property and index class methods modified to take arbitrary number of symbols optionally followed by options hash (#166)
12+
* BUG: Setting property :system on Neo4j::Rails::Model should work (#163)
13+
* BUG: update_attributes should convert values according to Type (#155)
14+
* BUG: Neo4j::RelationshipMixin#relationship_type broken #(169)
15+
* BUG: Relationship.load(nil) == Relationship.load(0) (#167)
16+
* BUG: Full text search returns nil in rails model (#153)
17+
18+
== 1.0.0 / 2011-03-02
19+
* Complete rewrite of everything.
20+
* Replaced the lucene module with using the java neo4j-lucene integration instead
21+
* Lots of improvements of the API
22+
* Better ActiveModel/Rails integration
23+
24+
== 0.4.4 / 2010-08-01
225
* Fixed bug on traversing when using the RelationshipMixin (#121)
326
* BatchInserter and JRuby 1.6 - Fix iteration error with trying to modify in-place hash
427

lib/neo4j/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Neo4j
2-
VERSION = "1.1.0.beta.3"
2+
VERSION = "1.1.0"
33
end

spec/batch/rule_inserter_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,13 @@ class SubClazz < BaseClazz
157157
fail("Unknown rel #{args[1]}")
158158
end
159159
when BASE_CLASS_RULE_NODE
160+
args[1].should == 43
161+
args[2].should == 2
160162
args[0].should == :foo
161-
args[2].should == 43
162163
when SUBCLASS_CLASS_RULE_NODE
164+
args[1].should == 42
165+
args[2].should == 2
163166
args[0].should == :foo
164-
args[2].should == 42
165167
else
166168
fail("Unknown from #{args[1]}")
167169
end

0 commit comments

Comments
 (0)