Skip to content
Merged
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/release-rubygem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
ruby-version: '3.4'
bundler-cache: true
- uses: cucumber/[email protected]
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
matrix:
os:
- ubuntu-latest
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
ruby: ['3.0', '3.1', '3.2', '3.3', '3.4', '3.5']
include:
- os: windows-latest
ruby: '3.3'
ruby: '3.4'
- os: macos-latest
ruby: '3.3'
ruby: '3.4'

steps:
- uses: actions/checkout@v5
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Changed
- [Ruby] Minor cosmetic / CI changes for development (Nothing front-facing)
- [Python] PEP 639 licence metadata specification ([#361](https://github.com/cucumber/cucumber-expressions/pull/361))

## [18.0.1] - 2024-10-28
Expand Down
2 changes: 1 addition & 1 deletion ruby/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Layout/LineLength:
Max: 200

# This is documented in this spec to showcase why it's not working and people shouldn't use it
# cf:
# cf: https://github.com/cucumber/cucumber/issues/329
Lint/MixedRegexpCaptureTypes:
Exclude:
- 'spec/cucumber/cucumber_expressions/tree_regexp_spec.rb'
Expand Down
Loading