Skip to content

Commit d1e93fd

Browse files
authored
Merge pull request #366 from interagent/bf/update-support-matrix
Update support matrix
2 parents 19bdf31 + 1dc20be commit d1e93fd

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
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 }}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The 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))

pliny.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)