Skip to content

Commit 28fbf40

Browse files
committed
chore: update scala 3.3.6 to 3.3.7
1 parent 085d285 commit 28fbf40

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/release-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up environment variables
2222
run: |
2323
echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
24-
echo "SCALA_VERSION=3.3.6" >> $GITHUB_ENV
24+
echo "SCALA_VERSION=3.3.7" >> $GITHUB_ENV
2525
- name: JAR Build
2626
run: ./mill "sjsonnet.jvm[$SCALA_VERSION].__.assembly"
2727
- name: JS Build
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up environment variables
6868
run: |
6969
echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
70-
echo "SCALA_VERSION=3.3.6" >> $GITHUB_ENV
70+
echo "SCALA_VERSION=3.3.7" >> $GITHUB_ENV
7171
- name: Native Binary Build
7272
run: ./mill "sjsonnet.native[$SCALA_VERSION].nativeLink"
7373
- name: GraalVM Binary Build

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cancelable in Global := true
44
val options = Seq("-Wconf:origin=scala.collection.compat.*:s", "-Xlint:all")
55

66
lazy val commonSettings = Seq(
7-
scalaVersion := "3.3.6",
7+
scalaVersion := "3.3.7",
88
scalacOptions ++= options
99
)
1010

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,13 +248,13 @@ mitigate the unfortunate JVM warmup overhead that adds ~1s to every invocation
248248
down to 0.2-0.3s. For the simple non-client-server executable, you can use
249249
250250
```bash
251-
./mill -i show sjsonnet[3.3.6].jvm.assembly
251+
./mill -i show sjsonnet[3.3.7].jvm.assembly
252252
```
253253
254254
To create the executable. For the client-server executable, you can use
255255
256256
```bash
257-
./mill -i show sjsonnet[3.3.6].server.assembly
257+
./mill -i show sjsonnet[3.3.7].server.assembly
258258
```
259259
260260
By default, the Sjsonnet background server lives in `~/.sjsonnet`, and lasts 5

sjsonnet/test/resources/go_test_suite/refresh_golden.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -e
1818

1919
JAVA_OPTS="-Xss100m -Xms2g -XX:+UseG1GC"
2020
ROOTDIR=$(git rev-parse --show-toplevel)
21-
JSONNET_BIN="$ROOTDIR/out/sjsonnet/jvm/3.3.6/assembly.dest/out.jar"
21+
JSONNET_BIN="$ROOTDIR/out/sjsonnet/jvm/3.3.7/assembly.dest/out.jar"
2222
PARAMS="--no-duplicate-keys-in-comprehension --strict-import-syntax --strict-inherited-assertions --strict-set-operations"
2323

2424
if [ $# -eq 0 ] ; then

sjsonnet/test/resources/test_suite/refresh_golden.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -e
1818

1919
JAVA_OPTS="-Xss100m"
20-
JSONNET_BIN="../../../../out/sjsonnet/jvm/3.3.6/assembly.dest/out.jar"
20+
JSONNET_BIN="../../../../out/sjsonnet/jvm/3.3.7/assembly.dest/out.jar"
2121
PARAMS="--no-duplicate-keys-in-comprehension --strict-import-syntax --strict-inherited-assertions --strict-set-operations"
2222

2323
if [ $# -eq 0 ] ; then

0 commit comments

Comments
 (0)