Skip to content

Commit cef6dea

Browse files
committed
version bump
1 parent b9bbd3a commit cef6dea

9 files changed

+13
-8
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### Unreleased
44

5+
### 9.0.0
6+
57
* [Breaking] Remove default `type` for Stripe Merchant Account creation
68
* Refactor `Pay.sync(params)` into a Hash for easily extending
79

@@ -10,6 +12,9 @@ Pay::SYNC_HANDLERS[:foo] = ->(id) { Pay::Foo.sync_checkout(id) }
1012
# Pay.sync(params) calls lambda if params[:foo] is present
1113
```
1214

15+
* Add `balance_transaction` to Stripe Charges for accessing conversion rates
16+
* Skip subscription renewing webhook for Stripe subscriptions that are set to `send_invoice`
17+
1318
### 8.3.0
1419

1520
* Ignore Stripe `payment_failed` and `payment_action_required` webhooks on `incomplete` subscriptions as these are already handled by the JavaScript in-browser. #1121

Diff for: Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_6.1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_7.0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_7.1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_7.2.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_8.0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.3.0)
4+
pay (9.0.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: gemfiles/rails_main.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ GIT
100100
PATH
101101
remote: ..
102102
specs:
103-
pay (8.3.0)
103+
pay (9.0.0)
104104
rails (>= 6.0.0)
105105

106106
GEM

Diff for: lib/pay/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Pay
2-
VERSION = "8.3.0"
2+
VERSION = "9.0.0"
33
end

0 commit comments

Comments
 (0)