Skip to content

Commit

Permalink
Merge pull request #366 from interagent/bf/update-support-matrix
Browse files Browse the repository at this point in the history
Update support matrix
  • Loading branch information
beanieboi authored Feb 6, 2025
2 parents 19bdf31 + 1dc20be commit d1e93fd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2']
activesupport-version: ['6', '7']
sinatra-version: ['2', '3', '4']
ruby-version: ['3.2', '3.3', '3.4']
activesupport-version: ['7', '8']
sinatra-version: ['3', '4']
env:
ACTIVESUPPORT_MAJOR: ${{ matrix.activesupport-version }}
SINATRA_MAJOR: ${{ matrix.sinatra-version }}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 🔜
### Added
- Add support for Ruby 3.3 and 3.4 ([#366](https://github.com/interagent/pliny/pull/3366))
- Add support for ActiveSupport 8 ([#366](https://github.com/interagent/pliny/pull/366))

### Removed
- Drop support for Ruby 3.0 and 3.1 ([#366](https://github.com/interagent/pliny/pull/366))
- Drop support for Sinatra 2 ([#366](https://github.com/interagent/pliny/pull/366))
- Drop support for ActiveSupport 6 ([#366](https://github.com/interagent/pliny/pull/366))

## [1.1.0] - 2024-02-13
### Added
- Add support for Sinatra 4 ([#361](https://github.com/interagent/pliny/pull/361))
Expand Down
4 changes: 2 additions & 2 deletions pliny.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Gem::Specification.new do |gem|
gem.executables = %x{ git ls-files }.split("\n").select { |d| d =~ /^bin\// }.map { |d| d.gsub(/^bin\//, "") }
gem.files = %x{ git ls-files }.split("\n").select { |d| d =~ %r{^(License|README|bin/|data/|ext/|lib/|spec/|test/)} }

gem.required_ruby_version = ">= 3.0"
gem.required_ruby_version = ">= 3.2"

gem.add_dependency "activesupport", ">= 6.0", "< 8.0"
gem.add_dependency "activesupport", ">= 7.0", "< 9.0"
gem.add_dependency "multi_json", "~> 1.9", ">= 1.9.3"
gem.add_dependency "prmd", "~> 0.11", ">= 0.11.4"

Expand Down

0 comments on commit d1e93fd

Please sign in to comment.