Skip to content

Commit

Permalink
Released v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Nov 16, 2008
1 parent 536cdb2 commit 85df73b
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rdoc
@@ -1,4 +1,4 @@
== 1.5.4 released 2008-10-30
== 1.5.4 released 2008-11-16

* Removed subclass requirement for adding conditions in Conditions::Base
* Removed DISTINCT in the select clause, instead called uniq! on the results. PostgreSQL complains about DISTINCT and AR uses uniq! when using :includes, so this is the best option.
Expand Down
55 changes: 37 additions & 18 deletions Manifest
@@ -1,5 +1,4 @@
CHANGELOG.rdoc
examples/README.rdoc
init.rb
lib/searchlogic/active_record/associations.rb
lib/searchlogic/active_record/base.rb
Expand Down Expand Up @@ -98,26 +97,46 @@ Manifest
MIT-LICENSE
Rakefile
README.rdoc
test/active_record_tests/associations_test.rb
test/active_record_tests/base_test.rb
test/condition_tests/base_test.rb
test/condition_tests/begins_with_test.rb
test/condition_tests/blank_test.rb
test/condition_tests/child_of_test.rb
test/condition_tests/descendant_of_test.rb
test/condition_tests/ends_with_test.rb
test/condition_tests/equals_test.rb
test/condition_tests/greater_than_or_equal_to_test.rb
test/condition_tests/greater_than_test.rb
test/condition_tests/inclusive_descendant_of_test.rb
test/condition_tests/keyswords_test.rb
test/condition_tests/less_than_or_equal_to_test.rb
test/condition_tests/less_than_test.rb
test/condition_tests/like_test.rb
test/condition_tests/nil_test.rb
test/condition_tests/not_begin_with_test.rb
test/condition_tests/not_blank_test.rb
test/condition_tests/not_end_with_test.rb
test/condition_tests/not_equal_test.rb
test/condition_tests/not_have_keywords_test.rb
test/condition_tests/not_like_test.rb
test/condition_tests/not_nil_test.rb
test/condition_tests/sibling_of_test.rb
test/conditions_tests/base_test.rb
test/conditions_tests/protection_test.rb
test/config_test.rb
test/fixtures/accounts.yml
test/fixtures/cats.yml
test/fixtures/dogs.yml
test/fixtures/animals.yml
test/fixtures/orders.yml
test/fixtures/user_groups.yml
test/fixtures/users.yml
test/test_active_record_associations.rb
test/test_active_record_base.rb
test/test_condition_base.rb
test/test_condition_types.rb
test/test_conditions_base.rb
test/test_conditions_protection.rb
test/test_config.rb
test/libs/acts_as_tree.rb
test/libs/rexml_fix.rb
test/modifier_tests/day_of_month_test.rb
test/search_tests/base_test.rb
test/search_tests/conditions_test.rb
test/search_tests/ordering_test.rb
test/search_tests/pagination_test.rb
test/search_tests/protection_test.rb
test/test_helper.rb
test/test_search_base.rb
test/test_search_conditions.rb
test/test_search_ordering.rb
test/test_search_pagination.rb
test/test_search_protection.rb
test_libs/acts_as_tree.rb
test_libs/ordered_hash.rb
test_libs/rexml_fix.rb
TODO.rdoc
2 changes: 1 addition & 1 deletion lib/searchlogic/version.rb
Expand Up @@ -67,7 +67,7 @@ def to_a

MAJOR = 1
MINOR = 5
TINY = 3
TINY = 4

# The current version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
Expand Down

0 comments on commit 85df73b

Please sign in to comment.