diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b70634b3..051a5819d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.26.1 - 2018-09-14 +* [#688](https://github.com/stripe/stripe-ruby/pull/688) Fix hash equality on `StripeObject` + ## 3.26.0 - 2018-09-05 * [#681](https://github.com/stripe/stripe-ruby/pull/681) Add support for reporting resources diff --git a/VERSION b/VERSION index 419ede3b9..1631f98b2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.26.0 +3.26.1 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 1bea90760..d6404b4ca 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "3.26.0".freeze + VERSION = "3.26.1".freeze end