Skip to content
Open
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: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

# Releases

## v 0.6.35

* Enabling support for ruby3.3

## v 0.6.34

* Enabling support for go1.20
Expand Down
1 change: 1 addition & 0 deletions langs/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ func init() {

//New runtime support for Ruby 3.1
// order matter, 'ruby' will pick up the first RubyLangHelper
registerHelper(&RubyLangHelper{Version: "3.3"})
registerHelper(&RubyLangHelper{Version: "3.1"})

registerHelper(&KotlinLangHelper{})
Expand Down
1 change: 1 addition & 0 deletions test/cli_init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ var runtimes = []string{
"java17",
"kotlin",
"ruby",
"ruby3.3",
"ruby3.1",
"node",
"node20",
Expand Down
1 change: 1 addition & 0 deletions test/cli_lang_boilerplate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ var Runtimes = []struct {
{"node20", ""},
{"node18", ""},
{"ruby", ""},
{"ruby3.3", ""},
{"ruby3.1", ""},
{"python", ""},
{"python3.8", ""},
Expand Down