Skip to content

Commit e01b7ff

Browse files
committed
[skip ci] Update changelog/readme and bump to version 1.6.6
1 parent c8b7481 commit e01b7ff

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
## Unreleased
3+
## Version 1.6.6 - 2015-04-05
4+
### Changed
5+
6+
* 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).
7+
8+
*Jon Atack*
9+
410
### Fixed
511

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

1925
*Nahuel Cuesta Luengo*
2026

27+
* Fix RubyGems YARD rendering of the README docs.
28+
29+
*Jon Atack*
30+
2131
### Added
2232

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

36+
* Add Code Climate analysis.
37+
2638
*Jon Atack*
2739

2840

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ If you're viewing this at
3030
[github.com/activerecord-hackery/ransack](https://github.com/activerecord-hackery/ransack),
3131
you're reading the documentation for the master branch with the latest features.
3232
[View documentation for the last release (1.6.6).]
33-
(https://github.com/activerecord-hackery/ransack/tree/v1.6.5)
33+
(https://github.com/activerecord-hackery/ransack/tree/v1.6.6)
3434

3535
## Getting started
3636

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

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

45-
In your Gemfile, for the last officially released Ransack gem:
45+
In your Gemfile, for the last officially released gem:
4646

4747
```ruby
4848
gem 'ransack'

lib/ransack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Ransack
2-
VERSION = "1.6.5"
2+
VERSION = '1.6.6'
33
end

0 commit comments

Comments
 (0)