diff --git a/CHANGELOG.md b/CHANGELOG.md index af68b88..3773722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.0.1 - Match 29th 2019 +- Increased the required PG gem version range to accept `1.1.x` + # 1.0.0 - March 23rd 2019 Add support for Postgres Union types and refactor Arel building process into a single module diff --git a/Gemfile.lock b/Gemfile.lock index 40baaaa..c1720e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,18 +4,18 @@ PATH active_record_extended (1.0.0) activerecord (>= 5.0, < 6.0) ar_outer_joins (~> 0.2) - pg (>= 0, < 1.1) + pg (>= 0, < 1.2) GEM remote: https://rubygems.org/ specs: - activemodel (5.2.2.1) - activesupport (= 5.2.2.1) - activerecord (5.2.2.1) - activemodel (= 5.2.2.1) - activesupport (= 5.2.2.1) + activemodel (5.2.3) + activesupport (= 5.2.3) + activerecord (5.2.3) + activemodel (= 5.2.3) + activesupport (= 5.2.3) arel (>= 9.0) - activesupport (5.2.2.1) + activesupport (5.2.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) @@ -30,7 +30,7 @@ GEM database_cleaner (1.7.0) diff-lcs (1.3) docile (1.3.1) - dotenv (2.7.1) + dotenv (2.7.2) i18n (1.6.0) concurrent-ruby (~> 1.0) jaro_winkler (1.5.2) @@ -38,10 +38,10 @@ GEM method_source (0.9.2) minitest (5.11.3) niceql (0.1.23) - parallel (1.14.0) + parallel (1.16.2) parser (2.6.2.0) ast (~> 2.4.0) - pg (1.0.0) + pg (1.1.4) pry (0.11.3) coderay (~> 1.1.0) method_source (~> 0.9.0) diff --git a/active_record_extended.gemspec b/active_record_extended.gemspec index f8c3e99..0cf6de6 100644 --- a/active_record_extended.gemspec +++ b/active_record_extended.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |spec| spec.add_dependency "activerecord", ">= 5.0", "< 6.0" spec.add_dependency "ar_outer_joins", "~> 0.2" - spec.add_dependency "pg", ">= 0", "< 1.1" + spec.add_dependency "pg", ">= 0", "< 1.2" spec.add_development_dependency "bundler", ">= 1.16", "< 2.1" spec.add_development_dependency "database_cleaner", "~> 1.6" diff --git a/gemfiles/activerecord-52+.gemfile b/gemfiles/activerecord-52+.gemfile index cff92b4..a4eb0ab 100644 --- a/gemfiles/activerecord-52+.gemfile +++ b/gemfiles/activerecord-52+.gemfile @@ -5,4 +5,4 @@ source "https://rubygems.org" gemspec path: ".." gem "activerecord", ">= 5.2" -gem "pg", "~> 0.18" +gem "pg", "~> 1.1.0"