From 07611d1ac1c46d6e03f4ce5c969d3f8df45c7a87 Mon Sep 17 00:00:00 2001 From: George Protacio-Karaszi Date: Thu, 28 Jul 2022 09:17:20 -0700 Subject: [PATCH] Pre-release changelog and version update --- CHANGELOG.md | 3 ++- Gemfile.lock | 28 ++++++++++++--------------- README.md | 8 ++++---- lib/active_record_extended/version.rb | 2 +- 4 files changed, 19 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff250c3..5daee4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Gemfile.lock b/Gemfile.lock index dc42919..5efc207 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ 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) @@ -9,17 +9,16 @@ PATH 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) @@ -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) @@ -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 diff --git a/README.md b/README.md index 1fa9361..451ae06 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/active_record_extended/version.rb b/lib/active_record_extended/version.rb index 450d03a..e451ef0 100644 --- a/lib/active_record_extended/version.rb +++ b/lib/active_record_extended/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveRecordExtended - VERSION = "2.1.1" + VERSION = "2.2.0" end