From 98ef85ae3f532f5f8091cad07be1ad737e3fec41 Mon Sep 17 00:00:00 2001 From: Sneha G P S Date: Tue, 13 Aug 2024 09:31:27 +0530 Subject: [PATCH] Adding support for ruby3.3 --- RELEASES.md | 4 ++++ langs/base.go | 1 + test/cli_init_test.go | 1 + test/cli_lang_boilerplate_test.go | 1 + 4 files changed, 7 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index a9edb143..126e44f0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,10 @@ # Releases +## v 0.6.35 + +* Enabling support for ruby3.3 + ## v 0.6.34 * Enabling support for go1.20 diff --git a/langs/base.go b/langs/base.go index 74654236..09ee8793 100644 --- a/langs/base.go +++ b/langs/base.go @@ -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{}) diff --git a/test/cli_init_test.go b/test/cli_init_test.go index 453ad1b9..a3cf82c9 100644 --- a/test/cli_init_test.go +++ b/test/cli_init_test.go @@ -32,6 +32,7 @@ var runtimes = []string{ "java17", "kotlin", "ruby", + "ruby3.3", "ruby3.1", "node", "node20", diff --git a/test/cli_lang_boilerplate_test.go b/test/cli_lang_boilerplate_test.go index 63ef73ed..7c0e4495 100644 --- a/test/cli_lang_boilerplate_test.go +++ b/test/cli_lang_boilerplate_test.go @@ -43,6 +43,7 @@ var Runtimes = []struct { {"node20", ""}, {"node18", ""}, {"ruby", ""}, + {"ruby3.3", ""}, {"ruby3.1", ""}, {"python", ""}, {"python3.8", ""},