Version 0.9.7

This commit is contained in:
Erik C. Thauvin 2024-05-22 16:12:51 -07:00
parent 9c99532298
commit 9548f6150f
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.6
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.7
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation=
bld.sourceDirectories=

View file

@ -33,7 +33,7 @@ public class CompileKotlinOperationBuild extends Project {
public CompileKotlinOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-kotlin";
version = version(0, 9, 6);
version = version(0, 9, 7);
javaRelease = 17;
downloadSources = true;

View file

@ -109,7 +109,7 @@ class CompileKotlinOptionsTest {
args.add(options.args());
args.add(options.apiVersion(11).jvmTarget(11).args());
for (var a: args) {
for (var a : args) {
assertThat(a).hasSize(matches.size());
IntStream.range(0, a.size()).forEach(i -> assertThat(a.get(i)).isEqualTo(matches.get(i)));
}