Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2, ruby-3.3 ]
ruby: [ ruby-3.1, ruby-3.2, ruby-3.3, ruby-3.4 ]
os: [ ubuntu-latest ]

steps:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-3.0
ruby-version: ruby-3.1
bundler-cache: true

- name: bundle exec rubocop
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
NewCops: enable
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

- **BREAKING** Drop Ruby 3.0 support
- **BREAKING** Drop Ruby 2.x support

[unreleased]: https://github.com/httprb/http/compare/v5.3.0...main
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,9 @@ and call `#readpartial` on it repeatedly until it returns `nil`:
This library aims to support and is [tested against][build-link]
the following Ruby versions:

- Ruby 3.0
- Ruby 3.1
- Ruby 3.2
- Ruby 3.3
- Ruby 3.4
- JRuby 9.4

If something doesn't work on one of these versions, it's a bug.
Expand Down
2 changes: 1 addition & 1 deletion http.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = HTTP::VERSION

gem.required_ruby_version = ">= 3.0"
gem.required_ruby_version = ">= 3.1"

gem.add_dependency "addressable", "~> 2.8"
gem.add_dependency "http-cookie", "~> 1.0"
Expand Down
Loading