diff --git a/CHANGELOG.md b/CHANGELOG.md index d6b577d65..78a5a8a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 4.0.3 - 2018-11-19 +* [#703](https://github.com/stripe/stripe-ruby/pull/703) Don't use `Net::HTTP::Persistent` on Windows where it's not well supported + ## 4.0.2 - 2018-11-16 * [#701](https://github.com/stripe/stripe-ruby/pull/701) Require minimum Faraday 0.13 for proper support of persistent connections diff --git a/VERSION b/VERSION index 4d54daddb..c4e41f945 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.2 +4.0.3 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 3e10eb1b6..aba8028a4 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "4.0.2".freeze + VERSION = "4.0.3".freeze end