Skip to content

Commit

Permalink
[skip ci] Update changelog/readme and bump to version 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatack committed Apr 5, 2015
1 parent c8b7481 commit e01b7ff
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Change Log

## Unreleased
## Version 1.6.6 - 2015-04-05
### Changed

* Upgrade Polyamorous dependency to version 1.2.0, which uses Module#prepend instead of monkey-patching for hooking into Active Record (with Ruby 2.x).

*Jon Atack*

### Fixed

* A better fix for the "undefined method `model_name` for Ransack::Search"
* An improved fix for the "undefined method `model_name` for Ransack::Search"
issue [#518](https://github.com/activerecord-hackery/ransack/issues/518)
affecting Rails 4.2.1 and 5.0.0. This fix allows us to remove the
ActionView patch in Ransack version 1.6.4.
Expand All @@ -18,11 +24,17 @@

*Nahuel Cuesta Luengo*

* Fix RubyGems YARD rendering of the README docs.

*Jon Atack*

### Added

* Add the Ruby version to the the header message that shows the database,
Active Record and Arel versions when running tests.

* Add Code Climate analysis.

*Jon Atack*


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ If you're viewing this at
[github.com/activerecord-hackery/ransack](https://github.com/activerecord-hackery/ransack),
you're reading the documentation for the master branch with the latest features.
[View documentation for the last release (1.6.6).]
(https://github.com/activerecord-hackery/ransack/tree/v1.6.5)
(https://github.com/activerecord-hackery/ransack/tree/v1.6.6)

## Getting started

Ransack is compatible with Rails 3 and 4 (including 4.2.1) on Ruby 1.9 and
later. It currently works with Rails 5 as well, though changes in Arel and
Active Record keep that a moving target. If you are using Ruby 1.8, you can use
an earlier version of Ransack up to v1.3.0.
later (Ruby 2.2 recommended). Ransack currently works with Rails master (5.0.0)
too! If you are using Ruby 1.8, you can use an earlier version of Ransack up to
1.3.0.

Ransack works out-of-the-box with Active Record and also features experimental
support for Mongoid 4.0 (without associations, further details below).

In your Gemfile, for the last officially released Ransack gem:
In your Gemfile, for the last officially released gem:

```ruby
gem 'ransack'
Expand Down
2 changes: 1 addition & 1 deletion lib/ransack/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Ransack
VERSION = "1.6.5"
VERSION = '1.6.6'
end

0 comments on commit e01b7ff

Please sign in to comment.