@@ -247,13 +247,13 @@ mitigate the unfortunate JVM warmup overhead that adds ~1s to every invocation
247
247
down to 0.2-0.3s. For the simple non-client-server executable, you can use
248
248
249
249
``` bash
250
- ./mill -i show sjsonnet[2.13.4 ].jvm.assembly
250
+ ./mill -i show sjsonnet[2.13.15 ].jvm.assembly
251
251
```
252
252
253
253
To create the executable. For the client-server executable, you can use
254
254
255
255
``` bash
256
- ./mill -i show sjsonnet[2.13.4 ].server.assembly
256
+ ./mill -i show sjsonnet[2.13.15 ].server.assembly
257
257
```
258
258
259
259
By default, the Sjsonnet background server lives in ` ~/.sjsonnet ` , and lasts 5
@@ -268,18 +268,18 @@ programmatically via `new Interpreter(...).interpret(...)`.
268
268
To publish, make sure the version number in ` build.sc ` is correct, then run the following commands:
269
269
270
270
``` 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
272
272
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
275
275
```
276
276
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
-
281
277
## Changelog
282
278
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
+
283
283
### 0.4.13
284
284
- Implemented every missing methods in ` std ` .
285
285
- Improved readability of stack traces when ` std ` methods are involved.
0 commit comments