Skip to content

Commit

Permalink
[#52] version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
comahe-de committed Nov 23, 2023
1 parent 84bedf7 commit d90f89f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ BuildProperties.printProperties()
// apply common configuration for this project and each sub project
allprojects {
group = "de.comahe.i18n4k"
version = "0.7.0-SNAPSHOT"
version = "0.7.0"

repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions examples/example-android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
// apply the i18n4k plugin
id("de.comahe.i18n4k") version "0.7.0-SNAPSHOT"
id("de.comahe.i18n4k") version "0.7.0"
}

android {
Expand Down Expand Up @@ -59,7 +59,7 @@ i18n4k {
dependencies {

// add the i18n4k dependency
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.7.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.7.0")

implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
Expand Down
4 changes: 2 additions & 2 deletions examples/example-js/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = "1.0.0-SNAPSHOT"

plugins {
kotlin("js") version "1.9.10"
id("de.comahe.i18n4k") version "0.7.0-SNAPSHOT"
id("de.comahe.i18n4k") version "0.7.0"
}

// ####################################
Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
implementation("org.jetbrains.kotlin-wrappers:kotlin-react:18.2.0-pre.349")
implementation("org.jetbrains.kotlin-wrappers:kotlin-react-dom:18.2.0-pre.349")

implementation("de.comahe.i18n4k:i18n4k-core-js:0.7.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-core-js:0.7.0")
}

// Fix build error message "Entry index.html is a duplicate but no duplicate handling strategy has been set."
Expand Down
4 changes: 2 additions & 2 deletions examples/example-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = "1.0.0-SNAPSHOT"

plugins {
kotlin("jvm") version "1.9.10"
id("de.comahe.i18n4k") version "0.7.0-SNAPSHOT"
id("de.comahe.i18n4k") version "0.7.0"
}

// ####################################
Expand Down Expand Up @@ -35,7 +35,7 @@ repositories {
}

dependencies {
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.7.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.7.0")
implementation("com.miglayout:miglayout-swing:5.2")
implementation(kotlin("stdlib-jdk8"))
testImplementation("junit", "junit", "4.13")
Expand Down
4 changes: 2 additions & 2 deletions examples/example-mpp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "1.0.0-SNAPSHOT"

plugins {
kotlin("multiplatform") version "1.9.10"
id("de.comahe.i18n4k") version "0.7.0-SNAPSHOT"
id("de.comahe.i18n4k") version "0.7.0"
}

// ####################################
Expand Down Expand Up @@ -68,7 +68,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core:0.7.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-core:0.7.0")
}
}
val commonTest by getting {
Expand Down

0 comments on commit d90f89f

Please sign in to comment.