HISTORY.md in chargify_api_ares-1.0.5 vs HISTORY.md in chargify_api_ares-1.1.0.pre

- old
+ new

@@ -1,4 +1,17 @@ +## 1.0.5 / May 11 2014 + +### Backwards-incompatible changes +* `Chargify::Subscription` methods no longer raise exception when there is a validation error. Now you must inspect the subscription object for errors. eg: + +```ruby +subscription.reactivate + +if subscription.errors.any? + # handle errors +end +``` + ## 1.0.0 / Nov 19 2013 ### Backwards-incompatible changes * `Chargify::Subscription.charge` now returns an ActiveResource `Charge` object. In the case of an error, the `Charge` object will have `errors`, and you will not have to rescue an HTTP `422`.