Bump version to 1.28.0

This commit is contained in:
Brandur 2015-10-05 11:00:34 -07:00
parent 7d28eaab64
commit 84f3bd8f17
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,12 @@
=== 1.28.0 2015-10-05
* Make StripeObject's #save "upsert"-like; creates an object if new
* Add #update_attributes to StripeObject for safe mass assignment
* Properly mass assign attributes on calls to #save
* Add question mark helpers for boolean fields (e.g. #paid? as well as old #paid)
* Fix a bug that broke the API for StripeObject initialization
* Remove use of deprecated URI.escape
=== 1.27.2 2015-09-25
* Correct the URLs used to fetch Bitcoin transactions.

View File

@ -1 +1 @@
1.27.2
1.28.0

View File

@ -1,3 +1,3 @@
module Stripe
VERSION = '1.27.2'
VERSION = '1.28.0'
end