From 13ab4166c01ab4ad06b1ef9647c5bb6ad1a57701 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 19 Oct 2023 21:57:06 +0200 Subject: [PATCH] new kotest library version --- .../io_kotest_assertions_core_jvm.xml | 12 ++++----- .../libraries/io_kotest_runner_junit5_jvm.xml | 26 +++++++++---------- codeGenCpu6502/build.gradle | 2 +- codeGenIntermediate/build.gradle | 2 +- compiler/build.gradle | 2 +- .../src/prog8/buildversion/BuildVersion.kt | 12 ++++----- intermediate/build.gradle | 2 +- virtualmachine/build.gradle | 2 +- 8 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.idea/libraries/io_kotest_assertions_core_jvm.xml b/.idea/libraries/io_kotest_assertions_core_jvm.xml index 5ae47b5af..df625ad37 100644 --- a/.idea/libraries/io_kotest_assertions_core_jvm.xml +++ b/.idea/libraries/io_kotest_assertions_core_jvm.xml @@ -1,19 +1,19 @@ - + - + - + - + - - + + diff --git a/.idea/libraries/io_kotest_runner_junit5_jvm.xml b/.idea/libraries/io_kotest_runner_junit5_jvm.xml index 23f3539a1..c4261a3bd 100644 --- a/.idea/libraries/io_kotest_runner_junit5_jvm.xml +++ b/.idea/libraries/io_kotest_runner_junit5_jvm.xml @@ -1,29 +1,29 @@ - + - - - + + + - - - + + + - + - - + + - - - + + + diff --git a/codeGenCpu6502/build.gradle b/codeGenCpu6502/build.gradle index a839dec28..3bc6717e0 100644 --- a/codeGenCpu6502/build.gradle +++ b/codeGenCpu6502/build.gradle @@ -30,7 +30,7 @@ dependencies { // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.7.2' } sourceSets { diff --git a/codeGenIntermediate/build.gradle b/codeGenIntermediate/build.gradle index 174451126..da47b60d7 100644 --- a/codeGenIntermediate/build.gradle +++ b/codeGenIntermediate/build.gradle @@ -30,7 +30,7 @@ dependencies { // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.7.2' } sourceSets { diff --git a/compiler/build.gradle b/compiler/build.gradle index 3e17768c0..4d3cc5649 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -40,7 +40,7 @@ dependencies { implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18" testImplementation project(':intermediate') - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.7.2' } configurations.all { diff --git a/compiler/src/prog8/buildversion/BuildVersion.kt b/compiler/src/prog8/buildversion/BuildVersion.kt index ab9f2d6d7..df2412404 100644 --- a/compiler/src/prog8/buildversion/BuildVersion.kt +++ b/compiler/src/prog8/buildversion/BuildVersion.kt @@ -5,11 +5,11 @@ package prog8.buildversion */ const val MAVEN_GROUP = "prog8" const val MAVEN_NAME = "compiler" -const val VERSION = "9.5" -const val GIT_REVISION = 4149 -const val GIT_SHA = "203ec5fa46f883885b7e66526f18770aa1717785" -const val GIT_DATE = "2023-10-15T18:24:48Z" +const val VERSION = "9.5.1" +const val GIT_REVISION = 4157 +const val GIT_SHA = "3dc5a0e7f8e5a94fdb4c13ff9199a4bf912268f2" +const val GIT_DATE = "2023-10-18T21:59:37Z" const val GIT_BRANCH = "master" -const val BUILD_DATE = "2023-10-15T19:52:30Z" -const val BUILD_UNIX_TIME = 1697399550365L +const val BUILD_DATE = "2023-10-19T19:55:55Z" +const val BUILD_UNIX_TIME = 1697745355291L const val DIRTY = 1 diff --git a/intermediate/build.gradle b/intermediate/build.gradle index c7417cf7c..d6df8b982 100644 --- a/intermediate/build.gradle +++ b/intermediate/build.gradle @@ -27,7 +27,7 @@ compileTestKotlin { dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.7.2' } sourceSets { diff --git a/virtualmachine/build.gradle b/virtualmachine/build.gradle index 633ebd0cf..e467dfc05 100644 --- a/virtualmachine/build.gradle +++ b/virtualmachine/build.gradle @@ -29,7 +29,7 @@ dependencies { implementation project(':intermediate') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.7.2' } sourceSets {