Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed May 29, 2024
1 parent 855cd92 commit c2706ae
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

### Unreleased

### 7.2.1

* Use empty string to resume / unpause Stripe subscriptions. #992

### 7.2.0

* Add devcontainer for easier development #988
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: .
specs:
pay (7.2.0)
pay (7.2.1)
rails (>= 6.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ gem "receipts"
gem "prawn"
gem "pg"
gem "mysql2"
gem "sqlite3", "~> 1.4"
gem "puma"
gem "web-console", group: :development
gem "sprockets-rails"
Expand All @@ -26,6 +27,5 @@ gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "rails", "~> 6.1.0"
gem "sqlite3", "~> 1.4"

gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
pay (7.2.0)
pay (7.2.1)
rails (>= 6.0.0)

GEM
Expand Down Expand Up @@ -234,6 +234,7 @@ GEM
sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0)
sqlite3 (1.7.0-arm64-darwin)
sqlite3 (1.7.0-x86_64-darwin)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ gem "receipts"
gem "prawn"
gem "pg"
gem "mysql2"
gem "sqlite3", "~> 1.4"
gem "puma"
gem "web-console", group: :development
gem "sprockets-rails"
Expand All @@ -26,6 +27,5 @@ gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "rails", "~> 7.0.0"
gem "sqlite3", "~> 1.4"

gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_7.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
pay (7.2.0)
pay (7.2.1)
rails (>= 6.0.0)

GEM
Expand Down Expand Up @@ -240,6 +240,7 @@ GEM
sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0)
sqlite3 (1.7.0-arm64-darwin)
sqlite3 (1.7.0-x86_64-darwin)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ gem "receipts"
gem "prawn"
gem "pg"
gem "mysql2"
gem "sqlite3", "~> 1.4"
gem "puma"
gem "web-console", group: :development
gem "sprockets-rails"
Expand All @@ -26,6 +27,5 @@ gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "rails", "~> 7.1.0"
gem "sqlite3", "~> 1.4"

gemspec path: "../"
3 changes: 2 additions & 1 deletion gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
pay (7.2.0)
pay (7.2.1)
rails (>= 6.0.0)

GEM
Expand Down Expand Up @@ -268,6 +268,7 @@ GEM
sqlite3 (1.7.0)
mini_portile2 (~> 2.8.0)
sqlite3 (1.7.0-arm64-darwin)
sqlite3 (1.7.0-x86_64-darwin)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_main.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ gem "receipts"
gem "prawn"
gem "pg"
gem "mysql2"
gem "sqlite3", "~> 2.0"
gem "puma"
gem "web-console", group: :development
gem "sprockets-rails"
Expand All @@ -26,6 +27,5 @@ gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "rails", branch: "main", git: "https://github.com/rails/rails.git"
gem "sqlite3", "~> 2.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_main.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ GIT
PATH
remote: ..
specs:
pay (7.2.0)
pay (7.2.1)
rails (>= 6.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/pay/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pay
VERSION = "7.2.0"
VERSION = "7.2.1"
end

0 comments on commit c2706ae

Please sign in to comment.