From 8c4813fcbfb0d57e8243f1cdcc45c088a650f377 Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 15 Nov 2018 10:41:58 -0800 Subject: [PATCH] Bump version to 4.0.0 --- CHANGELOG.md | 4 ++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bb8526a8..169bdd10e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.0.0 - 2018-11-15 +* [#698](https://github.com/stripe/stripe-ruby/pull/698) Use persistent connections by default through `Net::HTTP::Persistent` +* [#698](https://github.com/stripe/stripe-ruby/pull/698) Drop support for Ruby 2.0 (which we consider a breaking change here) + ## 3.31.1 - 2018-11-12 * [#697](https://github.com/stripe/stripe-ruby/pull/697) Send telemetry in milliseconds specifically diff --git a/VERSION b/VERSION index d23b171c3..fcdb2e109 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.31.1 +4.0.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index d1e988146..282264da8 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "3.31.1".freeze + VERSION = "4.0.0".freeze end