Skip to content

Commit 7257f01

Browse files
authored
Subroutine 4.3.0: Bump to Ruby 3.3.7 as default, test vs 3.2 and 3.3 (#83)
1 parent 6494468 commit 7257f01

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.6
1+
3.3.7

CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Subroutine 4.3.0
4+
5+
Default repository to Ruby 3.3.7, and gem to a minimum version of 3.2.0.
6+
Tests continue to run against both Ruby 3.2 and Ruby 3.3.
7+
38
## Subroutine 4.2.0
49

510
If you are using polymorphic association fields, you can now customize how Subroutine

gemfiles/rails_7.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ GEM
7676
nokogiri (1.18.2-arm64-darwin)
7777
racc (~> 1.4)
7878
racc (1.8.1)
79-
rack (3.1.8)
79+
rack (3.1.9)
8080
rack-session (2.1.0)
8181
base64 (>= 0.1.0)
8282
rack (>= 3.0.0)

gemfiles/rails_7.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ GEM
7575
nokogiri (1.18.2-arm64-darwin)
7676
racc (~> 1.4)
7777
racc (1.8.1)
78-
rack (3.1.8)
78+
rack (3.1.9)
7979
rack-session (2.1.0)
8080
base64 (>= 0.1.0)
8181
rack (>= 3.0.0)

gemfiles/rails_8.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ GEM
8787
nokogiri (1.18.2-x86_64-linux-gnu)
8888
racc (~> 1.4)
8989
racc (1.8.1)
90-
rack (3.1.8)
90+
rack (3.1.9)
9191
rack-session (2.1.0)
9292
base64 (>= 0.1.0)
9393
rack (>= 3.0.0)

lib/subroutine/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
module Subroutine
44

55
MAJOR = 4
6-
MINOR = 2
7-
PATCH = 1
6+
MINOR = 3
7+
PATCH = 0
88
PRE = nil
99

1010
VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join(".")

subroutine.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ Gem::Specification.new do |spec|
2929
spec.add_development_dependency "minitest-reporters"
3030
spec.add_development_dependency "mocha"
3131
spec.add_development_dependency "rake"
32+
33+
spec.required_ruby_version = ">= 3.2.0"
3234
end

0 commit comments

Comments
 (0)