From 1db69fef381178551d20cfa32ec3d0465f3217dd Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Thu, 19 Jan 2023 23:06:54 -0500 Subject: [PATCH 1/2] Adds Ruby 3.2 to the CI matrix --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49c12f8..6669af6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ references: test: matrix: parameters: - ruby-version: ['2.7', '3.0', '3.1'] + ruby-version: ['2.7', '3.0', '3.1', '3.2'] bundle-version: ['Gemfile.rails-7.0'] workflows: From 40db7448750b4a617e54be1a71e7569385ad8f02 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Tue, 31 Jan 2023 23:26:21 -0500 Subject: [PATCH 2/2] Bump up pg version constraint --- gemfiles/Gemfile.rails-7.0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemfiles/Gemfile.rails-7.0 b/gemfiles/Gemfile.rails-7.0 index c978afe..c9aabe4 100644 --- a/gemfiles/Gemfile.rails-7.0 +++ b/gemfiles/Gemfile.rails-7.0 @@ -1,7 +1,7 @@ source 'https://rubygems.org' gem 'rails', '~> 7.0' -gem 'pg', '~> 1.2.3' +gem 'pg', '~> 1.4.0' gem "byebug" gemspec path: "../"