Skip to content

Commit 5e124dd

Browse files
authored
Merge pull request #1093 from activerecord-hackery/v2.3.1
V2.3.1
2 parents a4540e3 + a6b2537 commit 5e124dd

File tree

3 files changed

+21
-25
lines changed

3 files changed

+21
-25
lines changed

CHANGELOG.md

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

3-
## Unreleased
3+
## 2.3.1 - 2010-01-01
44

55
* Drop support for Active Record 5.0, 5.1, and 5.2.0.
66
PR [#1073](https://github.com/activerecord-hackery/ransack/pull/1073)
7-
7+
88
* Drop support for rubies under 2.3.
99
PR [#1070](https://github.com/activerecord-hackery/ransack/pull/1070)
1010

11+
... and others
12+
1113
## 2.3.0 - 2019-08-18
1214

1315
* Arabic translations PR [979](https://github.com/activerecord-hackery/ransack/pull/979)

README.md

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,6 @@
55
[![Code Climate](https://codeclimate.com/github/activerecord-hackery/ransack/badges/gpa.svg)](https://codeclimate.com/github/activerecord-hackery/ransack)
66
[![Backers on Open Collective](https://opencollective.com/ransack/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/ransack/sponsors/badge.svg)](#sponsors)
77

8-
Ransack is a rewrite of [MetaSearch](https://github.com/activerecord-hackery/meta_search)
9-
created by [Ernie Miller](http://twitter.com/erniemiller)
10-
and developed/maintained for years by
11-
[Jon Atack](http://twitter.com/jonatack) and
12-
[Ryan Bigg](http://twitter.com/ryanbigg) with the help of a great group of
13-
[contributors](https://github.com/activerecord-hackery/ransack/graphs/contributors). Ransack's logo is designed by [Anıl Kılıç](https://github.com/anilkilic).
14-
While it supports many of the same features as MetaSearch, its underlying
15-
implementation differs greatly from MetaSearch,
16-
and backwards compatibility is not a design goal.
17-
188
Ransack enables the creation of both
199
[simple](http://ransack-demo.herokuapp.com) and
2010
[advanced](http://ransack-demo.herokuapp.com/users/advanced_search) search forms
@@ -25,21 +15,9 @@ or controller layer, you're probably not looking for Ransack (or MetaSearch,
2515
for that matter). Try [Squeel](https://github.com/activerecord-hackery/squeel)
2616
instead.
2717

28-
If you're viewing this at
29-
[github.com/activerecord-hackery/ransack](https://github.com/activerecord-hackery/ransack),
30-
you're reading the documentation for the master branch with the latest features.
31-
[View documentation for the last release (2.0.0).](https://github.com/activerecord-hackery/ransack/tree/v2.0.0)
32-
3318
## Getting started
3419

3520
Ransack is compatible with Rails 6.0, 5.0, 5.1 and 5.2 on Ruby 2.3 and later.
36-
If you are using Rails <5.0 use the 1.8 line of Ransack.
37-
If you are using Ruby 2.2 or an earlier JRuby and run into compatibility
38-
issues, you can use an earlier version of Ransack, say, up to 2.3.0.
39-
40-
Ransack works out-of-the-box with Active Record and also features limited
41-
support for Mongoid 4 and 5 (without associations, further details
42-
[below](https://github.com/activerecord-hackery/ransack#mongoid)).
4321

4422
In your Gemfile, for the last officially released gem:
4523

@@ -928,6 +906,7 @@ In other words: `Major.Minor.Patch`.
928906

929907
To support the project:
930908

909+
* Consider supporting via [Open Collective](https://opencollective.com/ransack/backers/badge.svg)
931910
* Use Ransack in your apps, and let us know if you encounter anything that's
932911
broken or missing. A failing spec to demonstrate the issue is awesome. A pull
933912
request with passing tests is even better!
@@ -943,6 +922,21 @@ fix bugs!
943922

944923
This project exists thanks to all the people who contribute. <img src="https://opencollective.com/ransack/contributors.svg?width=890&button=false" />
945924

925+
Ransack is a rewrite of [MetaSearch](https://github.com/activerecord-hackery/meta_search)
926+
created by [Ernie Miller](http://twitter.com/erniemiller)
927+
and developed/maintained by:
928+
929+
- [Greg Molnar](https://github.com/gregmolnar)
930+
- [Deivid Rodriguez](https://github.com/deivid-rodriguez)
931+
- [Sean Carroll](https://github.com/seanfcarroll)
932+
- [Jon Atack](http://twitter.com/jonatack)
933+
- [Ryan Bigg](http://twitter.com/ryanbigg)
934+
- a great group of [contributors](https://github.com/activerecord-hackery/ransack/graphs/contributors).
935+
- Ransack's logo is designed by [Anıl Kılıç](https://github.com/anilkilic).
936+
937+
While it supports many of the same features as MetaSearch, its underlying implementation differs greatly from MetaSearch, and backwards compatibility is not a design goal.
938+
939+
946940

947941
## Backers
948942

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 = '2.3.0'
2+
VERSION = '2.3.1'
33
end

0 commit comments

Comments
 (0)