Skip to content
Merged
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
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ jobs:
strategy:
matrix:
ruby:
- 3.2
- 3.3
- 3.4
gemfile:
- gemfiles/rails_7_2.gemfile
- gemfiles/rails_8_0.gemfile
- gemfiles/ruby.gemfile
name: Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }} Tests
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.12
4 changes: 0 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
appraise 'rails-7-2' do
gem 'rails', '~> 7.2.0'
end

appraise 'rails-8-0' do
gem 'rails', '~> 8.0.0'
end
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ and this project aims to adhere to [Semantic Versioning](http://semver.org/spec/

### Removed

## [2.3.0] - 2026-08-10

### Removed

- Drop support for < Ruby 3.3
- Drop support for < Rails 8.0

## [2.2.0] - 2025-09-09

### Removed
Expand Down
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
webvalve (2.2.0)
activesupport (>= 6.0)
webvalve (2.3.0)
activesupport (>= 8.0)
sinatra (>= 1.4)
sinatra-contrib (>= 1.4)
webmock (>= 2.0)
Expand Down Expand Up @@ -106,6 +106,7 @@ PLATFORMS
arm64-darwin-22
arm64-darwin-23
arm64-darwin-24
arm64-darwin-25
x86_64-darwin-22
x86_64-linux

Expand Down
7 changes: 0 additions & 7 deletions gemfiles/rails_7_2.gemfile

This file was deleted.

264 changes: 0 additions & 264 deletions gemfiles/rails_7_2.gemfile.lock

This file was deleted.

5 changes: 3 additions & 2 deletions gemfiles/rails_8_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
webvalve (2.2.0)
activesupport (>= 6.0)
webvalve (2.3.0)
activesupport (>= 8.0)
sinatra (>= 1.4)
sinatra-contrib (>= 1.4)
webmock (>= 2.0)
Expand Down Expand Up @@ -251,6 +251,7 @@ GEM

PLATFORMS
arm64-darwin-23
arm64-darwin-25
x86_64-linux

DEPENDENCIES
Expand Down
5 changes: 3 additions & 2 deletions gemfiles/ruby.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
webvalve (2.2.0)
activesupport (>= 6.0)
webvalve (2.3.0)
activesupport (>= 8.0)
sinatra (>= 1.4)
sinatra-contrib (>= 1.4)
webmock (>= 2.0)
Expand Down Expand Up @@ -104,6 +104,7 @@ GEM

PLATFORMS
arm64-darwin-23
arm64-darwin-25
x86_64-linux

DEPENDENCIES
Expand Down
2 changes: 1 addition & 1 deletion lib/webvalve/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module WebValve
VERSION = "2.2.0"
VERSION = "2.3.0"
end
4 changes: 2 additions & 2 deletions webvalve.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.files = Dir["{lib}/**/*", "LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
s.test_files = Dir["spec/**/*"]

s.add_dependency "activesupport", ">= 6.0"
s.add_dependency "activesupport", ">= 8.0"
s.add_dependency "sinatra", ">= 1.4"
s.add_dependency "sinatra-contrib", ">= 1.4"
s.add_dependency "webmock", ">= 2.0"
Expand All @@ -28,7 +28,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "pry"
s.add_development_dependency "yard"

s.required_ruby_version = ">= 3.2"
s.required_ruby_version = ">= 3.3"

s.post_install_message = <<~MSG
Thanks for installing WebValve!
Expand Down
Loading