Skip to content

Commit 9f0f5ba

Browse files
Upgrade Scala versions 3.7.0 -> 3.7.1 (#1746)
1 parent d222569 commit 9f0f5ba

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SCALA_3_VERSIONS = [
2222
"3.3.6",
2323
"3.5.2",
2424
"3.6.4",
25-
"3.7.0",
25+
"3.7.1",
2626
]
2727

2828
SCALA_VERSIONS = SCALA_2_VERSIONS + SCALA_3_VERSIONS

dt_patches/dt_patch_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ $runner test_compiler_patch 3.3.6
118118
$runner test_compiler_patch 3.4.3
119119
$runner test_compiler_patch 3.5.2
120120
$runner test_compiler_patch 3.6.4
121-
$runner test_compiler_patch 3.7.0
121+
$runner test_compiler_patch 3.7.1
122122

123123
$runner test_compiler_srcjar_error 2.12.11
124124
$runner test_compiler_srcjar_error 2.12.12
@@ -151,4 +151,4 @@ $runner test_compiler_srcjar_nonhermetic 3.3.6
151151
$runner test_compiler_srcjar 3.4.3
152152
$runner test_compiler_srcjar_nonhermetic 3.5.2
153153
$runner test_compiler_srcjar_nonhermetic 3.6.4
154-
$runner test_compiler_srcjar_nonhermetic 3.7.0
154+
$runner test_compiler_srcjar_nonhermetic 3.7.1

dt_patches/test_dt_patches_user_srcjar/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ scala_deps.compiler_srcjar(
170170
version = "3.6.4",
171171
)
172172
scala_deps.compiler_srcjar(
173-
url = "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.7.0/scala3-compiler_3-3.7.0-sources.jar",
174-
version = "3.7.0",
173+
url = "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.7.1/scala3-compiler_3-3.7.1-sources.jar",
174+
version = "3.7.1",
175175
)
176176

177177
scala_protoc = use_extension(

dt_patches/test_dt_patches_user_srcjar/WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ srcjars_by_version = {
147147
"3.6.4": {
148148
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.6.4/scala3-compiler_3-3.6.4-sources.jar",
149149
},
150-
"3.7.0": {
151-
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.7.0/scala3-compiler_3-3.7.0-sources.jar",
150+
"3.7.1": {
151+
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.7.1/scala3-compiler_3-3.7.1-sources.jar",
152152
},
153153
}
154154

examples/scala3/WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ scala_protoc_toolchains(name = "rules_scala_protoc_toolchains")
6262

6363
load("@rules_scala//:scala_config.bzl", "scala_config")
6464

65-
scala_config(scala_version = "3.7.0")
65+
scala_config(scala_version = "3.7.1")
6666

6767
load(
6868
"@rules_scala//scala:toolchains.bzl",

scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ options:
5151
Scala version for which to update repository
5252
information; if not provided, updates all supported
5353
versions: 2.11.12, 2.12.20, 2.13.16, 3.1.3, 3.2.2,
54-
3.3.6, 3.4.3, 3.5.2, 3.6.4, 3.7.0
54+
3.3.6, 3.4.3, 3.5.2, 3.6.4, 3.7.1
5555
--output_dir OUTPUT_DIR
5656
Directory in which to generate or update repository
5757
files (default: .../third_party/repositories)

scripts/create_repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"3.4.3",
2525
"3.5.2",
2626
"3.6.4",
27-
"3.7.0",
27+
"3.7.1",
2828
]
2929
PARSER_COMBINATORS_VERSION = '1.1.2'
3030
SBT_COMPILER_INTERFACE_VERSION = '1.10.8'

test/shell/test_examples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function scala3_6_example() {
5454
}
5555

5656
function scala3_7_example() {
57-
test_example examples/scala3 "bazel build --repo_env=SCALA_VERSION=3.7.0 //..."
57+
test_example examples/scala3 "bazel build --repo_env=SCALA_VERSION=3.7.1 //..."
5858
}
5959

6060
function semanticdb_example() {

test_thirdparty_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runner=$(get_test_runner "${1:-local}")
1515

1616

1717
# Latest version of each major version
18-
$runner test_scala_version "3.7.0" # Latest Next version
18+
$runner test_scala_version "3.7.1" # Latest Next version
1919
$runner test_scala_version "3.3.6" # Latest LTS version
2020
$runner test_scala_version "3.1.3" # First supported major for Scala 3, max supported JDK=18
2121
$runner test_scala_version "2.13.16"

third_party/repositories/scala_3_7.bzl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Mostly generated and updated by scripts/create_repository.py.
44
"""
55

6-
scala_version = "3.7.0"
6+
scala_version = "3.7.1"
77

88
artifacts = {
99
"com_github_jnr_jffi_native": {
@@ -186,12 +186,12 @@ artifacts = {
186186
],
187187
},
188188
"io_bazel_rules_scala_scala_asm": {
189-
"artifact": "org.scala-lang.modules:scala-asm:9.7.1-scala-1",
190-
"sha256": "3b764f500ee290ad44ff03db92c0de2b3ed920a1df531eab35a793f79b786379",
189+
"artifact": "org.scala-lang.modules:scala-asm:9.8.0-scala-1",
190+
"sha256": "86af037580bdf9ce9c05f8b2afd734daf1a8564c38cd10ca5d08bf81508ad2e4",
191191
},
192192
"io_bazel_rules_scala_scala_compiler": {
193-
"artifact": "org.scala-lang:scala3-compiler_3:3.7.0",
194-
"sha256": "c98aa98625b1907d604a7095cf0021fe46bf9fc63d6a462c5042098cac7f4372",
193+
"artifact": "org.scala-lang:scala3-compiler_3:3.7.1",
194+
"sha256": "3ad6529be3723d342a56b0283f41044fa539b51308d0ceb4b2f1ca1161fc4fd0",
195195
"deps": [
196196
"@io_bazel_rules_scala_scala_asm",
197197
"@io_bazel_rules_scala_scala_interfaces",
@@ -214,12 +214,12 @@ artifacts = {
214214
],
215215
},
216216
"io_bazel_rules_scala_scala_interfaces": {
217-
"artifact": "org.scala-lang:scala3-interfaces:3.7.0",
218-
"sha256": "afa940f0fffa93a2b3ce09a80bfb6f1e1aea6fa3a2160368bfced6f39fc55604",
217+
"artifact": "org.scala-lang:scala3-interfaces:3.7.1",
218+
"sha256": "273f477c705cbd31fee764ffb3434af7b50af8613d5246bfb76febb317cd95d4",
219219
},
220220
"io_bazel_rules_scala_scala_library": {
221-
"artifact": "org.scala-lang:scala3-library_3:3.7.0",
222-
"sha256": "6edd0cb7160d9b7bf5a0b13ae8a978001764778f15c888379d576877a27475af",
221+
"artifact": "org.scala-lang:scala3-library_3:3.7.1",
222+
"sha256": "09b95af8163e6a81c8ce9bf0aad9547a982effa15067cc8d71fa763317117233",
223223
"deps": [
224224
"@io_bazel_rules_scala_scala_library_2",
225225
],
@@ -250,8 +250,8 @@ artifacts = {
250250
],
251251
},
252252
"io_bazel_rules_scala_scala_tasty_core": {
253-
"artifact": "org.scala-lang:tasty-core_3:3.7.0",
254-
"sha256": "7e677d86449b1524757273457316cfb7a4b6994efa2fc53e323e3085045b7cd1",
253+
"artifact": "org.scala-lang:tasty-core_3:3.7.1",
254+
"sha256": "ae6b3e3d22fa2da81ef200cf59c66daa935e9991eb2402a66a0e294236066117",
255255
"deps": [
256256
"@io_bazel_rules_scala_scala_library",
257257
],

0 commit comments

Comments
 (0)