diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c707aef..6347ba7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 5.29.0 - 2021-01-05 +* [#952](https://github.com/stripe/stripe-ruby/pull/952) Allow client_id configuration on instance config + ## 5.28.0 - 2020-10-14 * [#950](https://github.com/stripe/stripe-ruby/pull/950) Add configuration option for `write_timeout` for connections on Ruby 2.6+ diff --git a/VERSION b/VERSION index e8902c36..9b4c76c6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.28.0 +5.29.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index e3c4258c..34799308 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "5.28.0" + VERSION = "5.29.0" end