Skip to content

Commit

Permalink
Drop ruby 26 (#979)
Browse files Browse the repository at this point in the history
* Remove Ruby 2.6 from the CI
* Require Ruby 2.7 in gemspec
  • Loading branch information
olleolleolle committed Jun 26, 2023
1 parent 766dde2 commit f0c31a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ["3.2", "3.1", "3.0", "2.7", "2.6"]
ruby-version: ["3.2", "3.1", "3.0", "2.7"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ Changelog

[Full Changelog](https://github.com/vcr/vcr/compare/v6.1.0...master)

- Drop support for Ruby 2.6.
- [new] Add `drop_unused_requests` option to exclude unused interactions (#946) by @ryanseys and @mhuntglickman
- [fix] Add support for on_data with Faraday (#823) by @zeisler
- [fix] Add support for `on_data` with Faraday (#823) by @zeisler

## 6.1.0 (March 13, 2022)

Expand Down
2 changes: 1 addition & 1 deletion vcr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = Dir[File.join("bin", "**", "*")].map! { |f| f.gsub(/bin\//, "") }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.6"
spec.required_ruby_version = ">= 2.7"

spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rspec", "~> 3.0"
Expand Down

0 comments on commit f0c31a6

Please sign in to comment.