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
2 changes: 1 addition & 1 deletion .github/workflows/test-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.1', '3.2', '3.3', '3.4', '3.5']
ruby: ['3.2', '3.3', '3.4', '4.0']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Changed
- [Ruby] Minimum ruby version is now bumped from `3.1` to `3.2`

## [29.1.4] - 2026-02-24
### Fixed
Expand All @@ -25,7 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [29.1.0] - 2026-02-16
### Added
- Add dotNet Implementation
- [.Net] Add dotNET Implementation

## [29.0.0] - 2026-02-08
### Added
Expand Down
2 changes: 1 addition & 1 deletion ruby/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inherit_mode:
- Exclude

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
NewCops: enable

# Stylistic preference for cucumber
Expand Down
8 changes: 4 additions & 4 deletions ruby/cucumber-compatibility-kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/cucumber/compatibility-kit'
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.required_ruby_version = '>= 3.1'
s.required_ruby_version = '>= 3.2'
s.required_rubygems_version = '>= 3.2.8'

s.metadata = {
Expand All @@ -22,9 +22,9 @@ Gem::Specification.new do |s|
}

s.add_development_dependency 'rspec', '~> 3.13'
s.add_development_dependency 'rubocop', '~> 1.81.0'
s.add_development_dependency 'rubocop-performance', '~> 1.26.0'
s.add_development_dependency 'rubocop-rspec', '~> 3.7.0'
s.add_development_dependency 'rubocop', '~> 1.85.1'
s.add_development_dependency 'rubocop-performance', '~> 1.26.1'
s.add_development_dependency 'rubocop-rspec', '~> 3.8.0'

s.files = Dir['README.md', 'LICENSE', 'lib/**/*', 'features/**/*']
s.rdoc_options = ['--charset=UTF-8']
Expand Down
Loading