From 548f8b31dbc9e7628a6de074e795174e4a4cb88d Mon Sep 17 00:00:00 2001 From: George Protacio-Karaszi Date: Thu, 20 Jan 2022 12:50:01 -0800 Subject: [PATCH] bump version --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 20 +++++++++----------- lib/active_record_extended/version.rb | 2 +- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4e680a..35bb3d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 2.1.0 - January 20th 2022 + +## Changes + +- [#47](https://github.com/GeorgeKaraszi/ActiveRecordExtended/pull/65) Added Rails 7.0 support (mbell697) + # 2.0.3 - June 25th 2021 #### Bug fixes: diff --git a/Gemfile.lock b/Gemfile.lock index 5eb9dca..e34657d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_record_extended (2.0.3) + active_record_extended (2.1.0) activerecord (>= 5.1, < 7.1.0) ar_outer_joins (~> 0.2) pg (< 3.0) @@ -9,17 +9,16 @@ PATH GEM remote: https://rubygems.org/ specs: - activemodel (6.1.4) - activesupport (= 6.1.4) - activerecord (6.1.4) - activemodel (= 6.1.4) - activesupport (= 6.1.4) - activesupport (6.1.4) + activemodel (7.0.1) + activesupport (= 7.0.1) + activerecord (7.0.1) + activemodel (= 7.0.1) + activesupport (= 7.0.1) + activesupport (7.0.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - zeitwerk (~> 2.3) ar_outer_joins (0.2.0) activerecord (>= 3.2) ast (2.4.1) @@ -30,11 +29,11 @@ GEM diff-lcs (1.3) docile (1.3.2) dotenv (2.7.5) - i18n (1.8.10) + i18n (1.8.11) concurrent-ruby (~> 1.0) json (2.3.1) method_source (0.9.2) - minitest (5.14.4) + minitest (5.15.0) niceql (0.1.25) parallel (1.20.1) parser (2.7.2.0) @@ -87,7 +86,6 @@ GEM tzinfo (2.0.4) concurrent-ruby (~> 1.0) unicode-display_width (1.7.0) - zeitwerk (2.4.2) PLATFORMS ruby diff --git a/lib/active_record_extended/version.rb b/lib/active_record_extended/version.rb index 5755459..812e8ee 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.0.3" + VERSION = "2.1.0" end