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
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3' ]
ruby: [ '3.1', '3.2', '3.3', '3.4' ]

steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@b256bd96bb4867e7d23e92e087d9bb697270b725
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ssh_data (1.3.0)
ssh_data (2.0.0)
base64 (~> 0.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh_data/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SSHData
VERSION = "1.3.0"
VERSION = "2.0.0"
end
2 changes: 1 addition & 1 deletion ssh_data.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/github/ssh_data"
s.authors = ["mastahyeti"]
s.email = "[email protected]"
s.required_ruby_version = ">= 2.3"
s.required_ruby_version = ">= 3.1"
s.files = Dir["./lib/**/*.rb"] + ["./LICENSE.md"]

s.add_dependency "base64", "~> 0.1"
Expand Down
Loading