File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed
Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- ruby-version : ['3.0 ', '3.1 ', '3.2 ']
16- activesupport-version : ['6 ', '7 ']
17- sinatra-version : ['2', ' 3', '4']
15+ ruby-version : ['3.2 ', '3.3 ', '3.4 ']
16+ activesupport-version : ['7 ', '8 ']
17+ sinatra-version : ['3', '4']
1818 env :
1919 ACTIVESUPPORT_MAJOR : ${{ matrix.activesupport-version }}
2020 SINATRA_MAJOR : ${{ matrix.sinatra-version }}
Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
66## [ Unreleased] - 🔜
7+ ### Added
8+ - Add support for Ruby 3.3 and 3.4 ([ #366 ] ( https://github.com/interagent/pliny/pull/3366 ) )
9+ - Add support for ActiveSupport 8 ([ #366 ] ( https://github.com/interagent/pliny/pull/366 ) )
10+
11+ ### Removed
12+ - Drop support for Ruby 3.0 and 3.1 ([ #366 ] ( https://github.com/interagent/pliny/pull/366 ) )
13+ - Drop support for Sinatra 2 ([ #366 ] ( https://github.com/interagent/pliny/pull/366 ) )
14+ - Drop support for ActiveSupport 6 ([ #366 ] ( https://github.com/interagent/pliny/pull/366 ) )
15+
716## [ 1.1.0] - 2024-02-13
817### Added
918- Add support for Sinatra 4 ([ #361 ] ( https://github.com/interagent/pliny/pull/361 ) )
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ Gem::Specification.new do |gem|
1515 gem . executables = %x{ git ls-files } . split ( "\n " ) . select { |d | d =~ /^bin\/ / } . map { |d | d . gsub ( /^bin\/ / , "" ) }
1616 gem . files = %x{ git ls-files } . split ( "\n " ) . select { |d | d =~ %r{^(License|README|bin/|data/|ext/|lib/|spec/|test/)} }
1717
18- gem . required_ruby_version = ">= 3.0 "
18+ gem . required_ruby_version = ">= 3.2 "
1919
20- gem . add_dependency "activesupport" , ">= 6 .0" , "< 8 .0"
20+ gem . add_dependency "activesupport" , ">= 7 .0" , "< 9 .0"
2121 gem . add_dependency "multi_json" , "~> 1.9" , ">= 1.9.3"
2222 gem . add_dependency "prmd" , "~> 0.11" , ">= 0.11.4"
2323
You can’t perform that action at this time.
0 commit comments