Skip to content

Commit

Permalink
Reinstate support to Ruby 2.1 and 2.2
Browse files Browse the repository at this point in the history
Closes GH-161, Closes GH-162
  • Loading branch information
weppos committed Jun 25, 2019
1 parent 34046e3 commit ae7cf82
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ cache:
- bundler

matrix:
include:
- rvm: 2.1
before_install:
- gem install bundler -v '< 2.0'
- rvm: 2.2
before_install:
- gem install bundler -v '< 2.0'
allow_failures:
- rvm: ruby-head
- rvm: jruby-9.1.5.0
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog


#### master
#### Release 3.1.1

- CHANGED: Updated definitions.
- CHANGED: Rolled back support for Ruby 2.3 (GH-161, GH-162)


#### Release 3.1.0
Expand Down
2 changes: 1 addition & 1 deletion lib/public_suffix/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

module PublicSuffix
# The current library version.
VERSION = "3.1.0"
VERSION = "3.1.1"
end
2 changes: 1 addition & 1 deletion public_suffix.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.description = "PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains."
s.licenses = ["MIT"]

s.required_ruby_version = ">= 2.3"
s.required_ruby_version = ">= 2.1"

s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit ae7cf82

Please sign in to comment.