Skip to content

Commit

Permalink
Fix version mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Aug 4, 2024
1 parent 39a7d92 commit d3a169c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
ruby-version: ['3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v3
- name: Set up Ruby 2.6
- uses: actions/checkout@v4
- name: Set up Ruby 3.0
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 2.6
ruby-version: 3.3

- name: Check if version exists
id: checkversionexists
Expand Down
2 changes: 1 addition & 1 deletion lib/gtfs/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module GTFS
VERSION = '0.5.0'
VERSION = '0.5.1'
end

0 comments on commit d3a169c

Please sign in to comment.