Skip to content

Commit 79dc09b

Browse files
authored
Merge pull request #631 from baaahs/kotlin-2.0.21
Bump versions
2 parents 73c0b2a + c06a894 commit 79dc09b

File tree

7 files changed

+18
-19
lines changed

7 files changed

+18
-19
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
# documented at https://circleci.com/docs/2.0/circleci-images/
1010
- image: cimg/openjdk:18.0.2-node
1111

12-
resource_class: medium+
12+
resource_class: large
1313

1414
working_directory: ~/repo
1515

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
object Versions {
2-
const val kotlin = "2.0.20"
2+
const val kotlin = "2.0.21"
33
const val kotlinGradlePlugin = kotlin
44
const val dokka = "1.7.10"
55

66
const val lwjgl = "3.3.1"
77

8-
const val kotlinWrappers = "1.0.0-pre.804"
8+
const val kotlinWrappers = "1.0.0-pre.816"
99

1010
// Test:
1111
const val junit = "5.8.1"

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[versions]
2-
kotlin = "2.0.20"
3-
coroutines = "1.7.2"
4-
serializationRuntime = "1.5.1"
5-
koin = "3.1.3"
6-
ksp = "2.0.20-1.0.25"
2+
kotlin = "2.0.21"
3+
coroutines = "1.9.0"
4+
serializationRuntime = "1.6.3"
5+
koin = "3.5.3"
6+
ksp = "2.0.21-1.0.26"
77
dokka = "1.7.10"
88
kgl = "0.6.2"
99
#jogl = "2.3.2"
1010
lwjgl = "3.3.1"
1111

1212
# JVM:
13-
ktor = "2.3.2"
13+
ktor = "2.3.12"
1414

1515
tarsosDsp = "2.5"
1616

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

kotlin-js-store/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@
126126
"@emotion/weak-memoize" "^0.4.0"
127127
stylis "4.2.0"
128128

129-
"@emotion/css@^11.13.0":
130-
version "11.13.0"
131-
resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.13.0.tgz#3b44f008ce782dafa7cecff75b263af174d0c702"
132-
integrity sha512-BUk99ylT+YHl+W/HN7nv1RCTkDYmKKqa1qbvM/qLSQEg61gipuBF5Hptk/2/ERmX2DCv0ccuFGhz9i0KSZOqPg==
129+
"@emotion/css@^11.13.4":
130+
version "11.13.4"
131+
resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.13.4.tgz#a5128e34a23f5e2c891970b8ec98a60c5a2395e1"
132+
integrity sha512-CthbOD5EBw+iN0rfM96Tuv5kaZN4nxPyYDvGUs0bc7wZBBiU/0mse+l+0O9RshW2d+v5HH1cme+BAbLJ/3Folw==
133133
dependencies:
134134
"@emotion/babel-plugin" "^11.12.0"
135135
"@emotion/cache" "^11.13.0"

shared/src/commonMain/kotlin/baaahs/util/KoinLogger.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ import org.koin.core.logger.Level
55
import org.koin.core.logger.Logger
66
import org.koin.core.logger.MESSAGE
77

8-
class KoinLogger : Logger(
9-
Level.ERROR // TODO: Koin 3.1.3 and Kotlin 1.6.0 fail on JVM unless duration logging is turned off.
10-
) {
8+
class KoinLogger : Logger() {
119
@Suppress("RemoveRedundantQualifierName")
1210
private val logger = baaahs.util.Logger<Koin>()
1311

14-
override fun log(level: Level, msg: MESSAGE) {
12+
override fun display(level: Level, msg: MESSAGE) {
1513
when (level) {
1614
Level.DEBUG -> logger.debug { msg }
1715
Level.INFO -> logger.info { msg }
16+
Level.WARNING -> logger.warn { msg }
1817
Level.ERROR -> logger.error { msg }
1918
Level.NONE -> {}
2019
}

shared/src/commonTest/kotlin/baaahs/gl/shader/dialect/IsfShaderDialectSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ object IsfShaderDialectSpec : Spek({
185185
it("fails to validate") {
186186
expect(shaderAnalysis.isValid).toBe(false)
187187
expect(shaderAnalysis.errors).containsExactly(
188-
GlslError("Unexpected JSON token at offset 2: Expected quotation mark '\"', but had '\"' instead at path: \$\n" +
188+
GlslError("Unexpected JSON token at offset 7: Expected quotation mark '\"', but had ' ' instead at path: \$\n" +
189189
"JSON input: { \"DESC }", 1)
190190
)
191191
}

0 commit comments

Comments
 (0)