diff --git a/.ruby-version b/.ruby-version index b0f6bf0..35d16fb 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.4.10 +2.5.7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dbe1b1..f7e7308 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 2.0.0 - December 22nd 2020 ## Changes diff --git a/Gemfile.lock b/Gemfile.lock index ffbe016..99c4bd8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_record_extended (1.4.0) + active_record_extended (2.0.0) activerecord (>= 5.1, < 6.2) ar_outer_joins (~> 0.2) pg (< 3.0) @@ -40,7 +40,6 @@ GEM parser (2.7.2.0) ast (~> 2.4.1) pg (1.2.3) - pg (1.2.3-x64-mingw32) pry (0.11.3) coderay (~> 1.1.0) method_source (~> 0.9.0) diff --git a/README.md b/README.md index 71d1aaf..34fedd3 100644 --- a/README.md +++ b/README.md @@ -52,11 +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.3.x **(EOL warning!)** - - Minimum Rails Version: 5.0.x **(EOL warning!)** - - Latest Ruby supported: 2.6.x - - Latest Rails supported: 6.0.x - - Postgres: 9.6-current(11) (probably works with most older versions to a certain point) + - Minimum Ruby Version: 2.4.x **(EOL warning!)** + - Minimum Rails Version: 5.1.x **(EOL warning!)** + - Minimum Postgres Version: 9.6.x **(EOL warning!)** + - Latest Ruby supported: 2.7.x + - Latest Rails supported: 6.1.x + - Postgres: 9.6-current(13) (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 56aa68d..56375d0 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 = "1.4.0" + VERSION = "2.0.0" end