Skip to content

Commit

Permalink
version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
comahe-de committed Mar 26, 2024
1 parent 4cc2d6e commit 956b60f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 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.8.0-SNAPSHOT"
version = "0.8.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.1"
id("de.comahe.i18n4k") version "0.8.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.1")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.8.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.1"
id("de.comahe.i18n4k") version "0.8.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.1")
implementation("de.comahe.i18n4k:i18n4k-core-js:0.8.0")
}

// Fix build error message "Entry index.html is a duplicate but no duplicate handling strategy has been set."
Expand Down
6 changes: 3 additions & 3 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.8.0-SNAPSHOT"
id("de.comahe.i18n4k") version "0.8.0"
}

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

dependencies {
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.8.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-cldr-plural-rules:0.8.0-SNAPSHOT")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.8.0")
implementation("de.comahe.i18n4k:i18n4k-cldr-plural-rules:0.8.0")

implementation("com.miglayout:miglayout-swing:5.2")
implementation(kotlin("stdlib-jdk8"))
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.1"
id("de.comahe.i18n4k") version "0.8.0"
}

// ####################################
Expand Down Expand Up @@ -68,7 +68,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core:0.7.1")
implementation("de.comahe.i18n4k:i18n4k-core:0.8.0")
}
}
val commonTest by getting {
Expand Down
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ _Internationalization for Kotlin_

**Home:** [github.com/comahe-de/i18n4k](https://github.com/comahe-de/i18n4k)

**Lastest release version:** 0.7.1
**Lastest release version:** 0.8.0

**Table of contents**

Expand Down Expand Up @@ -101,7 +101,7 @@ repositories {
```kotlin
val commonMain by getting {
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core:0.7.1")
implementation("de.comahe.i18n4k:i18n4k-core:0.8.0")
}
}
```
Expand All @@ -110,15 +110,15 @@ val commonMain by getting {

```kotlin
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core-js:0.7.1")
implementation("de.comahe.i18n4k:i18n4k-core-js:0.8.0")
}
```

**For Kotlin/Jvm:** add `de.comahe.i18n4k:i18n4k-core-jvm:<VERSION>` to the dependencies

```kotlin
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.7.1")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.8.0")
}
```

Expand All @@ -128,7 +128,7 @@ Apply the plugin "de.comahe.i18n4k", e.g:

```kotlin
plugins {
id("de.comahe.i18n4k") version "0.7.1"
id("de.comahe.i18n4k") version "0.8.0"
}
```

Expand Down Expand Up @@ -390,7 +390,7 @@ very welcome.

[badge-apache2.0]:https://img.shields.io/badge/License-Apache/2.0-blue.svg?style=flat

[badge-version]:https://img.shields.io/badge/version-0.7.1-blueviolet?style=flat
[badge-version]:https://img.shields.io/badge/version-0.8.0-blueviolet?style=flat

[badge-maven]:https://img.shields.io/badge/Maven-Central-6262EC?style=flat

Expand Down

0 comments on commit 956b60f

Please sign in to comment.