Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,14 @@ jobs:
fail-fast: false
matrix:
include:
- ruby: 2.5.7
gemfile: Gemfile
- ruby: 2.6.10
gemfile: Gemfile
- ruby: 2.7.4
gemfile: Gemfile
- ruby: 3.0.2
gemfile: Gemfile
- ruby: 3.1.2
gemfile: Gemfile
- ruby: 3.2.1
gemfile: Gemfile
- ruby: 3.3.6
gemfile: Gemfile
- ruby: 3.4.1
gemfile: Gemfile
- ruby: 4.0.1
gemfile: Gemfile
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.7
3.2.1
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

### Compatible changes

- Add support for Ruby 3.3
- Add support for Ruby 3.4
- Drop support for Ruby < 3.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be a breaking change

Also, why were the Add support for Ruby 3.3 and 3.4 in the unreleased section? Did we never release those updates? 🤔

- Add support for Ruby 4.0


## 3.2.0 - 2023-03-01

Expand Down
2 changes: 1 addition & 1 deletion modularity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'modularity/version'
Gem::Specification.new do |spec|
spec.name = 'modularity'
spec.version = Modularity::VERSION
spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 3.2.1'
spec.authors = ['Henning Koch']
spec.email = ['henning.koch@makandra.de']

Expand Down