Skip to content

Commit 57f3d1d

Browse files
authored
major: Release v1.0.0
Breaking changes: - Requires Ruby >= 3
1 parent eecf55d commit 57f3d1d

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,13 @@ jobs:
1717
bundle install
1818
bundle exec rubocop
1919
test:
20-
strategy:
21-
fail-fast: false
22-
matrix:
23-
ruby_version: ["2.7", "3.0"]
2420
runs-on: ubuntu-latest
2521
steps:
2622
- uses: actions/checkout@v4
2723
- name: Setup Ruby
2824
uses: ruby/setup-ruby@v1
2925
with:
30-
ruby-version: ${{ matrix.ruby_version }}
26+
ruby-version: '3.0'
3127
bundler-cache: true
3228
- name: Install dependencies
3329
run: bundle install

erblint-github.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |s|
44
s.name = "erblint-github"
5-
s.version = "0.5.1"
5+
s.version = "1.0.0"
66
s.summary = "erblint GitHub"
77
s.description = "Template style checking for GitHub Ruby repositories"
88
s.homepage = "https://github.com/github/erblint-github"
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
1111
s.files = Dir["README.md", "LICENSE", "lib/**/*", "config/**/*"]
1212
s.require_paths = ["lib"]
1313

14-
s.required_ruby_version = ">= 2.7.0"
14+
s.required_ruby_version = ">= 3.0.0"
1515

1616
s.email = ["[email protected]"]
1717
s.authors = ["GitHub Open Source"]

0 commit comments

Comments
 (0)