Skip to content

Commit

Permalink
Pre-release changelog and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeKaraszi committed Jul 28, 2022
1 parent f97b78a commit 07611d1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 22 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# 2.x.x - Unreleased
# 2.2.0 - July 28th 2022

#### Breaking Changes:

- Dropped Rails 5.1 support.
- Dropped Ruby 2.4 support.
- Dropped Postgres 9.6 support.
- Arel for ActiveRecord 6.1+ `contains` will no longer accept INET (ip address column types), use `inet_contains` instead.
- ActiveRecord `contains` should remain unaffected as it never accepted INET column types.

Expand Down
28 changes: 12 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
PATH
remote: .
specs:
active_record_extended (2.1.1)
active_record_extended (2.2.0)
activerecord (>= 5.2, < 7.1.0)
ar_outer_joins (~> 0.2)
pg (< 3.0)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.0.5.1)
activesupport (= 6.0.5.1)
activerecord (6.0.5.1)
activemodel (= 6.0.5.1)
activesupport (= 6.0.5.1)
activesupport (6.0.5.1)
activemodel (7.0.3.1)
activesupport (= 7.0.3.1)
activerecord (7.0.3.1)
activemodel (= 7.0.3.1)
activesupport (= 7.0.3.1)
activesupport (7.0.3.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
ar_outer_joins (0.2.0)
activerecord (>= 3.2)
ast (2.4.2)
Expand All @@ -40,7 +39,6 @@ GEM
parser (3.1.2.0)
ast (~> 2.4.1)
pg (1.4.1)
pg (1.4.1-x64-mingw32)
pry (0.11.3)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
Expand Down Expand Up @@ -89,11 +87,9 @@ GEM
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
thread_safe (0.3.6)
tzinfo (1.2.10)
thread_safe (~> 0.1)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
unicode-display_width (2.2.0)
zeitwerk (2.6.0)

PLATFORMS
ruby
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ Active Record Extended is essentially providing users with the other half of Pos
## Compatibility

This package is designed align and work with any officially supported Ruby and Rails versions.
- Minimum Ruby Version: 2.4.x **(EOL warning!)**
- Minimum Rails Version: 5.1.x **(EOL warning!)**
- Minimum Postgres Version: 9.6.x **(EOL warning!)**
- Minimum Ruby Version: 2.5.x **(EOL warning!)**
- Minimum Rails Version: 5.2.x **(EOL warning!)**
- Minimum Postgres Version: 10.x **(EOL warning!)**
- Latest Ruby supported: 3.0.x
- Latest Rails supported: 7.0.x
- Postgres: 9.6-current(13) (probably works with most older versions to a certain point)
- Postgres: 10-current(14) (probably works with most older versions to a certain point)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/active_record_extended/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveRecordExtended
VERSION = "2.1.1"
VERSION = "2.2.0"
end

0 comments on commit 07611d1

Please sign in to comment.