diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 029c51c..2157dff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: - stripe10 - stripe11 - stripe12 + - stripe13 include: - { ruby: "2.3", gemfile: "rails3.2", bundler: "1" } - { ruby: "2.5", gemfile: "rails5.1", bundler: "default" } diff --git a/Appraisals b/Appraisals index a2706fa..ff3ae4f 100644 --- a/Appraisals +++ b/Appraisals @@ -71,6 +71,10 @@ appraise "stripe12" do gem "stripe", "~> 12.0" end +appraise "stripe13" do + gem "stripe", "~> 13.0" +end + appraise "rails_master" do gem "rails", github: "rails" end diff --git a/CHANGELOG.md b/CHANGELOG.md index 4887175..dda32ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### [Unreleased] - TBD +- Add Stripe 13 support (#169) - Added Ruby 3.3 and Rails 7.2 to CI matrix (#170) ### 2.10.0 (Jun 28, 2024) diff --git a/gemfiles/stripe13.gemfile b/gemfiles/stripe13.gemfile new file mode 100644 index 0000000..effa930 --- /dev/null +++ b/gemfiles/stripe13.gemfile @@ -0,0 +1,7 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "stripe", "~> 13.0" + +gemspec path: "../" diff --git a/stripe_event.gemspec b/stripe_event.gemspec index 73a2422..232e6de 100644 --- a/stripe_event.gemspec +++ b/stripe_event.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |s| s.test_files = `git ls-files -- Appraisals {spec,gemfiles}/*`.split("\n") s.add_dependency "activesupport", ">= 3.1" - s.add_dependency "stripe", [">= 2.8", "< 13"] + s.add_dependency "stripe", [">= 2.8", "< 14"] s.add_development_dependency "appraisal" s.add_development_dependency "rails", [">= 3.1"]