Skip to content

Commit 0e167a6

Browse files
Merge pull request stripe-ruby-mock#691 from stripe-ruby-mock/release-301
release 3.0.1 with changelog
2 parents 1eb6d6d + fcb5845 commit 0e167a6

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
### 3.0.2 (Next)
2+
3+
* Your contribution here.
4+
5+
### 3.0.1 (TBD)
6+
* Added Changelog file
7+
* [#640](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/640): Support Payment Intent status requires_capture - [@theodorton](https://github.com/theodorton).
8+
* [#685](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/685): Adds support for pending_invoice_item_interval - [@joshcass](https://github.com/joshcass).
9+
* [#682](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/682): Prevent customer metadata from being overwritten with each update - [@sethkrasnianski](https://github.com/sethkrasnianski).
10+
* [#679](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/679): Fix for [#678](https://github.com/stripe-ruby-mock/stripe-ruby-mock/issues/678) Add active filter to Data::List - [@rnmp](https://github.com/rnmp).
11+
* [#668](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/668): Fix for [#665](https://github.com/stripe-ruby-mock/stripe-ruby-mock/issues/665) Allow to remove discount from customer - [@mnin](https://github.com/mnin).
12+
* [#667](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/667):
13+
Remove empty and duplicated methods from payment methods - [@mnin](https://github.com/mnin).
14+
* [#664](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/664): Bugfix: pass through PaymentIntent amount to mocked Charge - [@typeoneerror](https://github.com/typeoneerror).
15+
* [#654](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/654): fix for [#626](https://github.com/stripe-ruby-mock/stripe-ruby-mock/issues/626) Added missing decline codes - [@iCreateJB](https://github.com/iCreateJB).
16+
* [#648](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/648): Initial implementation of checkout session API - [@fauxparse](https://github.com/fauxparse).
17+
* [#644](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/644): Allow payment_behavior attribute on subscription create - [@j15e](https://github.com/j15e).
18+
19+
### 3.0.0 (2019-12-17)
20+
21+
##### the main thing is:
22+
- [#658](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/658) Make the gem compatible with Stripe Gem v.5

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ This gem has unexpectedly grown in popularity and I've gotten pretty busy, so I'
1212

1313
In your gemfile:
1414

15-
gem 'stripe-ruby-mock', '~> 3.0.0', :require => 'stripe_mock'
15+
gem 'stripe-ruby-mock', '~> 3.0.1', :require => 'stripe_mock'
1616

1717
## !!! Important
1818

19-
We don't have [changelog yet](https://github.com/stripe-ruby-mock/stripe-ruby-mock/issues/532).
19+
We have [changelog](https://github.com/stripe-ruby-mock/stripe-ruby-mock/blob/master/CHANGELOG.md). It's first attempt. Feel free to update it and suggest to a new format of it.
2020

2121
version `3.0.0` has [breaking changes](https://github.com/stripe-ruby-mock/stripe-ruby-mock/pull/658) - we support stripe > 5 and < 6 for now and try to follow the newest API version. But if you still use older versions please [read](https://github.com/stripe-ruby-mock/stripe-ruby-mock#specifications).
2222

lib/stripe_mock/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module StripeMock
22
# stripe-ruby-mock version
3-
VERSION = "3.0.0"
3+
VERSION = "3.0.1"
44
end

0 commit comments

Comments
 (0)