File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed
src/main/starlark/core/repositories Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ kt_javac_options(
9
9
name = "default_javac_options" ,
10
10
)
11
11
12
- KOTLIN_LANGUAGE_LEVEL = "2.1 "
12
+ KOTLIN_LANGUAGE_LEVEL = "2.2 "
13
13
14
14
define_kt_toolchain (
15
15
name = "experimental_toolchain" ,
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ _kt_toolchain = rule(
130
130
),
131
131
"language_version" : attr .string (
132
132
doc = "this is the -language_version flag [see](https://kotlinlang.org/docs/reference/compatibility.html)" ,
133
- default = "2.1 " ,
133
+ default = "2.2 " ,
134
134
values = [
135
135
"1.1" ,
136
136
"1.2" ,
@@ -143,11 +143,12 @@ _kt_toolchain = rule(
143
143
"1.9" ,
144
144
"2.0" ,
145
145
"2.1" ,
146
+ "2.2" ,
146
147
],
147
148
),
148
149
"api_version" : attr .string (
149
150
doc = "this is the -api_version flag [see](https://kotlinlang.org/docs/reference/compatibility.html)." ,
150
- default = "2.1 " ,
151
+ default = "2.2 " ,
151
152
values = [
152
153
"1.1" ,
153
154
"1.2" ,
@@ -160,6 +161,7 @@ _kt_toolchain = rule(
160
161
"1.9" ,
161
162
"2.0" ,
162
163
"2.1" ,
164
+ "2.2" ,
163
165
],
164
166
),
165
167
"debug" : attr .string_list (
Original file line number Diff line number Diff line change @@ -74,25 +74,25 @@ versions = struct(
74
74
sha256 = "5ba1ac917a06b0f02daaa60d10abbedd2220d60216af670c67a45b91c74cf8bb" ,
75
75
),
76
76
KOTLIN_CURRENT_COMPILER_RELEASE = version (
77
- version = "2.1.21 " ,
77
+ version = "2.2.0 " ,
78
78
url_templates = [
79
79
"https://github.com/JetBrains/kotlin/releases/download/v{version}/kotlin-compiler-{version}.zip" ,
80
80
],
81
- sha256 = "1ba08a8b45da99339a0601134cc037b54cf85e9bc0edbe76dcbd27c2d684a977 " ,
81
+ sha256 = "1adb6f1a5845ba0aa5a59e412e44c8e405236b957de1a9683619f1dca3b16932 " ,
82
82
),
83
83
KSP_CURRENT_COMPILER_PLUGIN_RELEASE = version (
84
- version = "2.1.21 -2.0.1 " ,
84
+ version = "2.2.0 -2.0.2 " ,
85
85
url_templates = [
86
86
"https://github.com/google/ksp/releases/download/{version}/artifacts.zip" ,
87
87
],
88
- sha256 = "44e965bb067b2bb5cd9184dab2c3dea6e3eab747d341c07645bb4c88f09e49c8 " ,
88
+ sha256 = "d8041e45e84dec7b7603186a1cf2ea7a8193fcedfe1f1e16c3e17adc5c3f1d6d " ,
89
89
),
90
90
KOTLIN_BUILD_TOOLS_IMPL = version (
91
- version = "2.1.20 " ,
91
+ version = "2.2.0 " ,
92
92
url_templates = [
93
93
"https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-build-tools-impl/{version}/kotlin-build-tools-impl-{version}.jar" ,
94
94
],
95
- sha256 = "6e94896e321603e3bfe89fef02478e44d1d64a3d25d49d0694892ffc01c60acf " ,
95
+ sha256 = "4a87f3c0272f17285d60e98643ec219f53e9b5ad5a23f3bc4c543a8644f86f17 " ,
96
96
),
97
97
RULES_ANDROID = version (
98
98
version = "0.6.4" ,
You can’t perform that action at this time.
0 commit comments