Skip to content

Commit

Permalink
Merge pull request #22 from GeorgeKaraszi/feature/pg-version-bump
Browse files Browse the repository at this point in the history
Bump required PG gem acceptance
  • Loading branch information
GeorgeKaraszi authored Mar 29, 2019
2 parents f842ed4 + ebfba9d commit 7579ac3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -30,18 +30,18 @@ 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)
json (2.2.0)
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)
Expand Down
2 changes: 1 addition & 1 deletion active_record_extended.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord-52+.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ source "https://rubygems.org"
gemspec path: ".."

gem "activerecord", ">= 5.2"
gem "pg", "~> 0.18"
gem "pg", "~> 1.1.0"

0 comments on commit 7579ac3

Please sign in to comment.