@@ -247,13 +247,13 @@ mitigate the unfortunate JVM warmup overhead that adds ~1s to every invocation
247247down to 0.2-0.3s. For the simple non-client-server executable, you can use
248248
249249``` bash
250- ./mill -i show sjsonnet[2.13.4 ].jvm.assembly
250+ ./mill -i show sjsonnet[2.13.15 ].jvm.assembly
251251```
252252
253253To create the executable. For the client-server executable, you can use
254254
255255``` bash
256- ./mill -i show sjsonnet[2.13.4 ].server.assembly
256+ ./mill -i show sjsonnet[2.13.15 ].server.assembly
257257```
258258
259259By default, the Sjsonnet background server lives in ` ~/.sjsonnet ` , and lasts 5
@@ -268,18 +268,18 @@ programmatically via `new Interpreter(...).interpret(...)`.
268268To publish, make sure the version number in ` build.sc ` is correct, then run the following commands:
269269
270270``` bash
271- ./mill -i mill.scalalib.PublishModule/publishAll --sonatypeCreds lihaoyi :$SONATYPE_PASSWORD --publishArtifacts __.publishArtifacts --release true
271+ ./mill -i mill.scalalib.PublishModule/publishAll --sonatypeCreds $SONATYPE_USER :$SONATYPE_PASSWORD --publishArtifacts __.publishArtifacts --release true
272272
273- ./mill -i show sjsonnet[2.13.4 ].js.fullOpt
274- ./mill -i show sjsonnet[2.13.4 ].jvm.assembly
273+ ./mill -i show sjsonnet[2.13.15 ].js.fullOpt
274+ ./mill -i show sjsonnet[2.13.15 ].jvm.assembly
275275```
276276
277- Please ensure that you are publishing with JDK 8, e.g. via
278- ` JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/ ` ,
279- to ensure the output bytecode remains compatible with users on older JVMs.
280-
281277## Changelog
282278
279+ ### Pending Version
280+ - Fix a bug in new strict mode for set in std.setUnion [ #242 ] ( https://github.com/databricks/sjsonnet/issues/242 )
281+ - Add support for Java 21 and dropped support for Java 11.
282+
283283### 0.4.13
284284- Implemented every missing methods in ` std ` .
285285- Improved readability of stack traces when ` std ` methods are involved.
0 commit comments