Skip to content

Commit

Permalink
Merge pull request #736 from jnunemaker/require-ruby-23
Browse files Browse the repository at this point in the history
Require ruby >= 2.3
  • Loading branch information
jnunemaker committed Sep 29, 2021
2 parents 45f20a6 + 9f420c2 commit 2bf82b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down
2 changes: 1 addition & 1 deletion httparty.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 2bf82b9

Please sign in to comment.