Skip to content

Commit d7b3d7a

Browse files
committed
Version bump
1 parent f985f8c commit d7b3d7a

File tree

8 files changed

+18
-14
lines changed

8 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### Unreleased
44

5+
### 11.2.2
6+
7+
* Fix Stripe `subscriptions.renewing` webhook to use the correct account when retrieving the price
8+
59
### 11.2.1
610

711
* Replace `owner` association with `delegate` since `has_one :through` doesn't work with polymorphic belongs_to without a `source_type`

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
pay (11.2.1)
4+
pay (11.2.2)
55
rails (>= 7.0.0)
66

77
GEM
@@ -238,7 +238,7 @@ GEM
238238
receipts (2.4.0)
239239
prawn (>= 1.3.0, < 3.0.0)
240240
prawn-table (~> 0.2.1)
241-
regexp_parser (2.11.0)
241+
regexp_parser (2.11.2)
242242
reline (0.6.2)
243243
io-console (~> 0.5)
244244
rexml (3.4.1)

gemfiles/rails_7.0.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (11.2.1)
4+
pay (11.2.2)
55
rails (>= 7.0.0)
66

77
GEM
@@ -211,7 +211,7 @@ GEM
211211
receipts (2.4.0)
212212
prawn (>= 1.3.0, < 3.0.0)
213213
prawn-table (~> 0.2.1)
214-
regexp_parser (2.11.0)
214+
regexp_parser (2.11.2)
215215
rexml (3.4.1)
216216
rubocop (1.75.8)
217217
json (~> 2.3)

gemfiles/rails_7.1.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (11.2.1)
4+
pay (11.2.2)
55
rails (>= 7.0.0)
66

77
GEM
@@ -244,7 +244,7 @@ GEM
244244
receipts (2.4.0)
245245
prawn (>= 1.3.0, < 3.0.0)
246246
prawn-table (~> 0.2.1)
247-
regexp_parser (2.11.0)
247+
regexp_parser (2.11.2)
248248
reline (0.6.2)
249249
io-console (~> 0.5)
250250
rexml (3.4.1)

gemfiles/rails_7.2.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (11.2.1)
4+
pay (11.2.2)
55
rails (>= 7.0.0)
66

77
GEM
@@ -236,7 +236,7 @@ GEM
236236
receipts (2.4.0)
237237
prawn (>= 1.3.0, < 3.0.0)
238238
prawn-table (~> 0.2.1)
239-
regexp_parser (2.11.0)
239+
regexp_parser (2.11.2)
240240
reline (0.6.2)
241241
io-console (~> 0.5)
242242
rexml (3.4.1)

gemfiles/rails_8.0.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (11.2.1)
4+
pay (11.2.2)
55
rails (>= 7.0.0)
66

77
GEM
@@ -254,7 +254,7 @@ GEM
254254
receipts (2.4.0)
255255
prawn (>= 1.3.0, < 3.0.0)
256256
prawn-table (~> 0.2.1)
257-
regexp_parser (2.11.0)
257+
regexp_parser (2.11.2)
258258
reline (0.6.2)
259259
io-console (~> 0.5)
260260
rexml (3.4.1)

gemfiles/rails_main.gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: https://github.com/rails/rails.git
3-
revision: f95352c1bf9f5183bf6bfa9c7b61fc574caaf871
3+
revision: f289e2568d5a29242c7531c8b93d8826bc4dce74
44
branch: main
55
specs:
66
actioncable (8.1.0.alpha)
@@ -102,7 +102,7 @@ GIT
102102
PATH
103103
remote: ..
104104
specs:
105-
pay (11.2.1)
105+
pay (11.2.2)
106106
rails (>= 7.0.0)
107107

108108
GEM
@@ -246,7 +246,7 @@ GEM
246246
receipts (2.4.0)
247247
prawn (>= 1.3.0, < 3.0.0)
248248
prawn-table (~> 0.2.1)
249-
regexp_parser (2.11.0)
249+
regexp_parser (2.11.2)
250250
reline (0.6.2)
251251
io-console (~> 0.5)
252252
rexml (3.4.1)

lib/pay/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Pay
2-
VERSION = "11.2.1"
2+
VERSION = "11.2.2"
33
end

0 commit comments

Comments
 (0)