From 452893a93250cd869c4bba27237282ab3d374a1c Mon Sep 17 00:00:00 2001 From: Pierre-Alexandre Meyer Date: Sun, 25 Jun 2023 15:51:39 +0100 Subject: [PATCH 1/2] rails: 6.1 support Signed-off-by: Pierre-Alexandre Meyer --- .github/workflows/ci.yml | 4 ++-- lib/payment_test/version.rb | 2 +- payment_test.gemspec | 2 +- test/dummy/config/application.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16c3fe8..850fe6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: database-password: 'root' database-port: '3306' docker-compose-file: 'docker-compose.ci.mysql.yml' - - ruby-version: 'jruby-9.4.2.0' + - ruby-version: 'jruby-9.3.10.0' database-adapter: 'mysql2' database-user: 'root' database-password: 'root' @@ -37,7 +37,7 @@ jobs: database-password: 'postgres' database-port: '5432' docker-compose-file: 'docker-compose.ci.postgresql.yml' - - ruby-version: 'jruby-9.4.2.0' + - ruby-version: 'jruby-9.3.10.0' database-adapter: 'postgresql' database-user: 'postgres' database-password: 'postgres' diff --git a/lib/payment_test/version.rb b/lib/payment_test/version.rb index cf9999b..bdc96c6 100644 --- a/lib/payment_test/version.rb +++ b/lib/payment_test/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PaymentTest - VERSION = '3.0.1' + VERSION = '2.1.0' end diff --git a/payment_test.gemspec b/payment_test.gemspec index ba903d7..2b28607 100644 --- a/payment_test.gemspec +++ b/payment_test.gemspec @@ -23,6 +23,6 @@ Gem::Specification.new do |s| s.add_dependency 'font-awesome-rails' s.add_dependency 'jquery-rails', '~> 4.5.1' s.add_dependency 'killbill-client' - s.add_dependency 'rails', '~> 7.0' + s.add_dependency 'rails', '~> 6.1' s.add_dependency 'sass-rails' end diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb index 8312562..f7fa7bb 100644 --- a/test/dummy/config/application.rb +++ b/test/dummy/config/application.rb @@ -25,7 +25,7 @@ module Dummy class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. - config.load_defaults 7.0 + config.load_defaults 6.1 # Configuration for the application, engines, and railties goes here. # From fd18a190293c0323eb592db3ae2eba380bd01c42 Mon Sep 17 00:00:00 2001 From: Kill Bill core team Date: Sun, 25 Jun 2023 15:05:29 +0000 Subject: [PATCH 2/2] Bump payment_test to 2.1.1 --- lib/payment_test/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/payment_test/version.rb b/lib/payment_test/version.rb index bdc96c6..31c0a17 100644 --- a/lib/payment_test/version.rb +++ b/lib/payment_test/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PaymentTest - VERSION = '2.1.0' + VERSION = '2.1.1' end