Compare commits

..

3 Commits

Author SHA1 Message Date
35c2fdd87c Merge pull request 'Update versions' (#4) from use-new-version into main
All checks were successful
Publish package / publish (push) Successful in 1m38s
Reviewed-on: #4
2024-09-20 13:38:22 +00:00
90fa850322
Bump version
All checks were successful
Pull Request / build (pull_request) Successful in 1m41s
2024-09-20 15:35:47 +02:00
3f017d22cb
Use newest version of Chinese transliteration lib 2024-09-20 15:35:38 +02:00
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ plugins {
} }
group = "com.marvinelsen" group = "com.marvinelsen"
version = "1.0-SNAPSHOT" version = "1.0.0"
repositories { repositories {
mavenCentral() mavenCentral()
@ -17,7 +17,7 @@ repositories {
dependencies { dependencies {
detektPlugins(libs.detekt.formatting) detektPlugins(libs.detekt.formatting)
implementation("com.marvinelsen:chinese-transliteration:1.1-SNAPSHOT") { isChanging = true } implementation(libs.chinese.transliteration)
testImplementation(libs.kotest.core) testImplementation(libs.kotest.core)
testImplementation(libs.kotest.assertions) testImplementation(libs.kotest.assertions)

View File

@ -2,8 +2,11 @@
kotlin = "2.0.20" kotlin = "2.0.20"
kotest = "5.9.1" kotest = "5.9.1"
detekt = "1.23.7" detekt = "1.23.7"
chinese-transliteration = "1.0.0"
[libraries] [libraries]
chinese-transliteration = { module = "com.marvinelsen:chinese-transliteration", version.ref = "chinese-transliteration" }
# Kotest # Kotest
# See: https://kotest.io # See: https://kotest.io
kotest-core = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" } kotest-core = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }