Skip to content

Commit

Permalink
Drop EOL Ruby 3.0 support (#358)
Browse files Browse the repository at this point in the history
* Bump ruby release version to 3.3

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>

* Drop EOL Ruby 3.0 support

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>

---------

Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
  • Loading branch information
chadlwilson authored Jun 20, 2024
1 parent f0a07c3 commit 8a1b713
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-on-pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3

- name: Setup git
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
ruby_version: ['3.0', '3.1', '3.2', '3.3']
ruby_version: ['3.1', '3.2', '3.3']
fail-fast: false

steps:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
ruby_version: ['3.0', '3.1', '3.2', '3.3']
ruby_version: ['3.1', '3.2', '3.3']
fail-fast: false

steps:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
ruby_version: ['3.0', '3.1', '3.2', '3.3']
ruby_version: ['3.1', '3.2', '3.3']
fail-fast: false

steps:
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
gauge-ruby (0.8.0)
gauge-ruby (0.9.0)
grpc (~> 1.10, >= 1.10.0)
parser (>= 3.0, < 4.0)
unparser (>= 0.5.0, < 0.7.0)
parser (>= 3.1, < 4.0)
unparser (>= 0.6.4, < 0.7.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -62,7 +62,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
unparser (0.6.13)
unparser (0.6.15)
diff-lcs (~> 1.3)
parser (>= 3.3.0)
yard (0.9.36)
Expand All @@ -86,4 +86,4 @@ DEPENDENCIES
yard

BUNDLED WITH
2.5.6
2.5.13
6 changes: 3 additions & 3 deletions gauge-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Gem::Specification.new do |s|
s.homepage = "https://gauge.org"
s.files = Dir.glob("lib/**/*.rb")

s.add_runtime_dependency 'parser', '>= 3.0', '< 4.0'
s.add_runtime_dependency 'unparser', '>= 0.5.0', '< 0.7.0'
s.add_runtime_dependency 'parser', '>= 3.1', '< 4.0'
s.add_runtime_dependency 'unparser', '>= 0.6.4', '< 0.7.0'
s.add_runtime_dependency 'grpc', '~> 1.10', '>= 1.10.0'
s.add_development_dependency 'grpc-tools', '~> 1.10', '>= 1.10.0'
s.required_ruby_version = ">= 3.0"
s.required_ruby_version = ">= 3.1"
end
2 changes: 1 addition & 1 deletion ruby.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id" : "ruby",
"version" : "0.8.0",
"version" : "0.9.0",
"description": "ruby support for gauge",
"install": {
"windows": [],
Expand Down

0 comments on commit 8a1b713

Please sign in to comment.