Bump version to 3.5.3

This commit is contained in:
Brandur 2017-10-16 13:13:41 -07:00
parent 5c3b741a2c
commit 20f4feaec0
3 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 3.5.3 - 2017-10-16
* [#594](https://github.com/stripe/stripe-ruby#594) Make sure that `StripeObject`'s `#deep_copy` maintains original class
* [#595](https://github.com/stripe/stripe-ruby#595) Allow `Object#method` to be called on `StripeObject` even if it conflicts with an accessor
* [#596](https://github.com/stripe/stripe-ruby#596) Encode arrays as integer-indexed hashes where appropriate
* [#598](https://github.com/stripe/stripe-ruby#598) Don't persist `idempotency_key` opt between requests
## 3.5.2 - 2017-10-13
* [#592](https://github.com/stripe/stripe-ruby#592) Bring back `Marshal.dump/load` support with custom marshal encoder/decoder

View File

@ -1 +1 @@
3.5.2
3.5.3

View File

@ -1,3 +1,3 @@
module Stripe
VERSION = "3.5.2".freeze
VERSION = "3.5.3".freeze
end