Bump version to 3.0.3

This commit is contained in:
Brandur 2017-07-28 11:45:12 -07:00
parent bcb5c5325e
commit d326e51b0e
3 changed files with 17 additions and 6 deletions

View File

@ -1,12 +1,21 @@
=== 3.0.3 2017-07-28
* Revert `nil` to empty string coercion from 3.0.2
* Handle `invalid_client` OAuth error code
* Improve safety of error handling logic safer for unrecognized OAuth error
codes
=== 3.0.2 2017-07-12 (yanked)
* Convert `nil` to empty string when serializing parameters
(instead of opaquely dropping it)
* Convert `nil` to empty string when serializing parameters (instead of
opaquely dropping it) -- NOTE: this change has since been reverted
=== 3.0.1 2017-07-11
* Properties set with an API resource will now serialize that resource's ID if possible
* API resources will throw an ArgumentError on save if a property has been with an API resource that cannot be serialized
* Properties set with an API resource will now serialize that resource's ID if
possible
* API resources will throw an ArgumentError on save if a property has been with
an API resource that cannot be serialized
=== 3.0.0 2017-06-27
@ -657,3 +666,5 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
* 1 major enhancement:
* Initial release
# vim: set tw=79:

View File

@ -1 +1 @@
3.0.2
3.0.3

View File

@ -1,3 +1,3 @@
module Stripe
VERSION = '3.0.2'
VERSION = '3.0.3'
end