Skip to content

Commit

Permalink
Merge pull request #608 from sparklemotion/flavorjones-another-ruby25…
Browse files Browse the repository at this point in the history
…-ci-fix

drop ruby 2.5 support
  • Loading branch information
flavorjones committed Mar 15, 2023
2 parents 70db881 + 3584eeb commit 4c8d3d2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "head", "jruby-9.4", "truffleruby-head"]
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "head", "jruby-9.4", "truffleruby-head"]

runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Mechanize CHANGELOG

## next / unreleased

### Requirements

* Mechanize now requires Ruby 2.6 or newer.


## 2.8.5 / 2022-06-09

### Security
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ The Mechanize library is used for automating interaction with websites. Mechaniz

## Dependencies

* Ruby >= 2.5
* Ruby >= 2.6
* Gems:
* `addressable`
* `domain_name`
Expand Down
2 changes: 1 addition & 1 deletion mechanize.gemspec
Expand Up @@ -51,7 +51,7 @@ Gem::Specification.new do |spec|
spec.extra_rdoc_files += Dir['*.rdoc', '*.md']
spec.rdoc_options = ["--main", "README.md"]

spec.required_ruby_version = ">= 2.5.0"
spec.required_ruby_version = ">= 2.6.0"

spec.add_runtime_dependency("addressable", "~> 2.8")
spec.add_runtime_dependency("domain_name", ">= 0.5.20190701", "~> 0.5")
Expand Down

0 comments on commit 4c8d3d2

Please sign in to comment.