Skip to content

Commit

Permalink
Subroutine 4.3.0: Bump to Ruby 3.3.7 as default, test vs 3.2 and 3.3 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaverbuch authored Feb 11, 2025
1 parent 6494468 commit 7257f01
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.6
3.3.7
5 changes: 5 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Subroutine 4.3.0

Default repository to Ruby 3.3.7, and gem to a minimum version of 3.2.0.
Tests continue to run against both Ruby 3.2 and Ruby 3.3.

## Subroutine 4.2.0

If you are using polymorphic association fields, you can now customize how Subroutine
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ GEM
nokogiri (1.18.2-arm64-darwin)
racc (~> 1.4)
racc (1.8.1)
rack (3.1.8)
rack (3.1.9)
rack-session (2.1.0)
base64 (>= 0.1.0)
rack (>= 3.0.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.2.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ GEM
nokogiri (1.18.2-arm64-darwin)
racc (~> 1.4)
racc (1.8.1)
rack (3.1.8)
rack (3.1.9)
rack-session (2.1.0)
base64 (>= 0.1.0)
rack (>= 3.0.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_8.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ GEM
nokogiri (1.18.2-x86_64-linux-gnu)
racc (~> 1.4)
racc (1.8.1)
rack (3.1.8)
rack (3.1.9)
rack-session (2.1.0)
base64 (>= 0.1.0)
rack (>= 3.0.0)
Expand Down
4 changes: 2 additions & 2 deletions lib/subroutine/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
module Subroutine

MAJOR = 4
MINOR = 2
PATCH = 1
MINOR = 3
PATCH = 0
PRE = nil

VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join(".")
Expand Down
2 changes: 2 additions & 0 deletions subroutine.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "minitest-reporters"
spec.add_development_dependency "mocha"
spec.add_development_dependency "rake"

spec.required_ruby_version = ">= 3.2.0"
end

0 comments on commit 7257f01

Please sign in to comment.