Skip to content

Commit 212095a

Browse files
committed
update dependencies
1 parent 516a451 commit 212095a

File tree

3 files changed

+37
-37
lines changed

3 files changed

+37
-37
lines changed

build.gradle.kts

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import kotlin.time.DurationUnit.MILLISECONDS
77
plugins {
88
signing
99
`maven-publish`
10-
kotlin("multiplatform") version "2.1.0"
10+
kotlin("multiplatform") version "2.3.0"
1111
// kotlin("jupyter.api") version "0.11.0-225"
12-
id("com.github.ben-manes.versions") version "0.52.0"
12+
id("com.github.ben-manes.versions") version "0.53.0"
1313
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
1414
}
1515

@@ -82,8 +82,8 @@ kotlin {
8282
// }
8383
val commonMain by getting {
8484
dependencies {
85-
implementation(kotlin("stdlib-common:2.1.0"))
86-
implementation(kotlin("reflect:2.1.0"))
85+
implementation(kotlin("stdlib-common:2.3.0"))
86+
implementation(kotlin("reflect:2.3.0"))
8787

8888
implementation("com.ionspin.kotlin:bignum:0.3.10")
8989

@@ -99,17 +99,17 @@ kotlin {
9999
// TODO: Figure out how to package viz.js directly for Kotlin Jupyter
100100
// https://github.com/mipt-npm/kmath/issues/449#issuecomment-1009660734
101101
implementation("guru.nidi:graphviz-kotlin:0.18.1")
102-
implementation("org.graalvm.js:js:24.2.2")
102+
implementation("org.graalvm.js:js:25.0.1")
103103

104104
implementation("org.jetbrains.lets-plot:platf-awt-jvm:4.4.1")
105-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.11.0")
105+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.1")
106106

107107
// https://arxiv.org/pdf/1908.10693.pdf
108108
// implementation("com.datadoghq:sketches-java:0.7.0")
109109

110110
// Cache PMF/CDF lookups for common queries
111111

112-
implementation("org.apache.datasketches:datasketches-java:8.0.0")
112+
implementation("org.apache.datasketches:datasketches-java:9.0.0")
113113

114114
// implementation("com.github.analog-garage:dimple:master-SNAPSHOT")
115115

@@ -146,7 +146,7 @@ kotlin {
146146
implementation("org.junit.jupiter:junit-jupiter:5.13.1")
147147

148148
implementation("junit:junit:4.13.2")
149-
implementation("org.jetbrains:annotations:26.0.2")
149+
implementation("org.jetbrains:annotations:26.0.2-1")
150150
implementation("org.slf4j:slf4j-simple:2.1.0-alpha1")
151151

152152
// http://www.ti.inf.uni-due.de/fileadmin/public/tools/grez/grez-manual.pdf
@@ -199,34 +199,34 @@ kotlin {
199199
* Adapted from: https://dev.to/kotlin/how-to-build-and-publish-a-kotlin-multiplatform-library-going-public-4a8k
200200
*/
201201

202-
publishing {
203-
publications {
204-
withType<MavenPublication> {
205-
artifact(javadocJar.get())
206-
pom {
207-
url = "https://github.com/breandan/kaliningraph"
208-
name = "Kaliningraph"
209-
description = "A purely functional algebraic graph library"
210-
licenses {
211-
license {
212-
name = "The Apache Software License, Version 2.0"
213-
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
214-
distribution = "repo"
215-
}
216-
}
217-
developers {
218-
developer {
219-
id = "Breandan Considine"
220-
name = "Breandan Considine"
221-
222-
organization = "McGill University"
223-
}
224-
}
225-
scm { url = "https://github.com/breandan/kaliningraph" }
226-
}
227-
}
228-
}
229-
}
202+
// publishing {
203+
// publications {
204+
// withType<MavenPublication> {
205+
// artifact(javadocJar.get())
206+
// pom {
207+
// url = "https://github.com/breandan/kaliningraph"
208+
// name = "Kaliningraph"
209+
// description = "A purely functional algebraic graph library"
210+
// licenses {
211+
// license {
212+
// name = "The Apache Software License, Version 2.0"
213+
// url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
214+
// distribution = "repo"
215+
// }
216+
// }
217+
// developers {
218+
// developer {
219+
// id = "Breandan Considine"
220+
// name = "Breandan Considine"
221+
// email = "[email protected]"
222+
// organization = "McGill University"
223+
// }
224+
// }
225+
// scm { url = "https://github.com/breandan/kaliningraph" }
226+
// }
227+
// }
228+
// }
229+
// }
230230
}
231231

232232
data class TestDuration(val name: String, val duration: Duration) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-rc-2-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

latex/lafi2026/lafi.pdf

36 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)