Skip to content
This repository was archived by the owner on Nov 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ println("Java v${System.getProperty("java.version")}")
println("Arch: ${System.getProperty("os.arch")}")

group = "github.buriedincode"
version = "0.3.0"
version = "0.3.1"

repositories {
mavenCentral()
Expand All @@ -30,8 +30,8 @@ dependencies {
implementation(libs.bundles.kotlinx.serialization)
implementation(libs.kotlin.logging)
runtimeOnly(libs.sqlite.jdbc)
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
testImplementation(libs.junit.jupiter)
testRuntimeOnly(libs.junit.platform.launcher)
testRuntimeOnly(libs.kotlin.reflect)
testRuntimeOnly(libs.log4j2.slf4j2.impl)
}
Expand Down
Binary file modified cache.sqlite
Binary file not shown.
9 changes: 4 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
[versions]
junit = "5.11.4"
kotlin = "2.1.10"

[plugins]
dokka = { id = "org.jetbrains.dokka", version = "2.0.0" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "12.1.2" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "12.2.0" }
versions = { id = "com.github.ben-manes.versions", version = "0.52.0" }

[libraries]
junit-jupiter-api = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junit" }
junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junit" }
kotlin-logging = { group = "io.github.oshai", name = "kotlin-logging-jvm", version = "7.0.4" }
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version = "5.12.0" }
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
kotlin-logging = { group = "io.github.oshai", name = "kotlin-logging-jvm", version = "7.0.5" }
kotlin-reflect = { group = "org.jetbrains.kotlin", name = "kotlin-reflect", version.ref = "kotlin" }
kotlinx-datetime = { group = "org.jetbrains.kotlinx", name = "kotlinx-datetime", version = "0.6.2" }
kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version = "1.8.0" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/kotlin/github/buriedincode/kraken/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ internal fun KLogger.log(level: Level, message: () -> Any?) {
/**
* The version of the Kraken library.
*/
internal const val VERSION = "0.3.0"
internal const val VERSION = "0.3.1"
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SeriesTest {
@Test
fun `Test ListSeries with a valid search`() {
val results = session.listSeries(params = mapOf("name" to "Bone"))
assertEquals(10, results.size)
assertEquals(12, results.size)
assertAll(
{ assertEquals(119, results[0].id) },
{ assertEquals(56, results[0].issueCount) },
Expand Down