Skip to content

Commit

Permalink
Release v1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Feb 22, 2009
1 parent f8cb33e commit 56b1693
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
== 1.6.4 released 2008-12-13
== 1.6.4 released 2009-01-22

* Fixed calling attribute_condition with newer versions of rails.

Expand Down
2 changes: 1 addition & 1 deletion lib/searchlogic/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def to_a

MAJOR = 1
MINOR = 6
TINY = 3
TINY = 4

# The current version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
Expand Down
2 changes: 1 addition & 1 deletion test/active_record_tests/base_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_searchlogic_searching
def test_searchlogic_counting
assert_equal 2, Account.count(:conditions => {:name_contains => "Binary"})
assert_equal 1, Account.count(:conditions => {:name_contains => "Binary", :users => {:first_name_contains => "Ben"}})
assert_equal 1, Account.count(:conditions => {:name_contains => "Binary", :users => {:first_name_contains => "Ben"}}, :limit => 10, :offset => 10, :order_by => "id", :group => "id")
assert_equal 1, Account.count(:conditions => {:name_contains => "Binary", :users => {:first_name_contains => "Ben"}}, :limit => 10, :offset => 10, :order_by => "id", :group => "accounts.id")
end

def test_scoping
Expand Down

0 comments on commit 56b1693

Please sign in to comment.