diff --git a/CHANGELOG.md b/CHANGELOG.md index 103a84893..822a96760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 5.35.0 - 2021-06-30 +* [#985](https://github.com/stripe/stripe-ruby/pull/985) Update normalize_opts to use dup instead of clone. +* [#982](https://github.com/stripe/stripe-ruby/pull/982) Deprecate travis +* [#983](https://github.com/stripe/stripe-ruby/pull/983) Add support for making a request and receiving the response as a stream. + ## 5.34.0 - 2021-06-04 * [#981](https://github.com/stripe/stripe-ruby/pull/981) API Updates * Add support for `TaxCode` API. diff --git a/VERSION b/VERSION index 04a883217..8ccdf66d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.34.0 +5.35.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index bb1ebc3d5..c6413fa7a 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "5.34.0" + VERSION = "5.35.0" end