diff --git a/CHANGELOG.md b/CHANGELOG.md index 6347ba7e..966425e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 5.29.1 - 2021-02-09 +* [#964](https://github.com/stripe/stripe-ruby/pull/964) Fix return value of `Customer#delete_discount` + ## 5.29.0 - 2021-01-05 * [#952](https://github.com/stripe/stripe-ruby/pull/952) Allow client_id configuration on instance config diff --git a/VERSION b/VERSION index 9b4c76c6..8becc252 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.29.0 +5.29.1 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 34799308..a996a2c0 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "5.29.0" + VERSION = "5.29.1" end