From 5dcc694825796b3bd3e66c7297bee9a4acf27a56 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Wed, 29 Sep 2021 08:43:05 -0400 Subject: [PATCH] Require ruby >= 2.3.0 --- Changelog.md | 6 ++++++ README.md | 2 +- httparty.gemspec | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 5199a945..a1ae96c6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,9 @@ +## 0.20.0 + +Breaking changes + +* Require Ruby >= 2.3.0 + ## 0.19.1 * [Remove use of unary + method for creating non-frozen string to increase compatibility with older versions of ruby](https://github.com/jnunemaker/httparty/commit/4416141d37fd71bdba4f37589ec265f55aa446ce) diff --git a/README.md b/README.md index 7b7e88dc..8d13eb88 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ gem install httparty ## Requirements -* Ruby 2.0.0 or higher +* Ruby 2.3.0 or higher * multi_xml * You like to party! diff --git a/httparty.gemspec b/httparty.gemspec index b52d1ca1..bec51d60 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.summary = 'Makes http fun! Also, makes consuming restful web services dead easy.' s.description = 'Makes http fun! Also, makes consuming restful web services dead easy.' - s.required_ruby_version = '>= 2.0.0' + s.required_ruby_version = '>= 2.3.0' s.add_dependency 'multi_xml', ">= 0.5.2" s.add_dependency('mime-types', "~> 3.0")