Skip to content

Commit

Permalink
version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
comahe-de committed Sep 5, 2023
1 parent 6a8eda1 commit c851619
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.6.0"
version = "0.6.1"

repositories {
mavenLocal()
Expand Down
4 changes: 2 additions & 2 deletions examples/example-android/app/build.gradle
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'

id("de.comahe.i18n4k") version "0.6.0"
id("de.comahe.i18n4k") version "0.6.1"
}

android {
Expand Down Expand Up @@ -43,7 +43,7 @@ i18n4k {

dependencies {

implementation 'de.comahe.i18n4k:i18n4k-core-jvm:0.6.0'
implementation 'de.comahe.i18n4k:i18n4k-core-jvm:0.6.1'

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
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.8.22"
id("de.comahe.i18n4k") version "0.6.0"
id("de.comahe.i18n4k") version "0.6.1"
}

// ####################################
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.6.0")
implementation("de.comahe.i18n4k:i18n4k-core-js:0.6.1")
}

// 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.8.22"
id("de.comahe.i18n4k") version "0.6.0"
id("de.comahe.i18n4k") version "0.6.1"
}

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

dependencies {
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.6.0")
implementation("de.comahe.i18n4k:i18n4k-core-jvm:0.6.1")
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.8.22"
id("de.comahe.i18n4k") version "0.6.0"
id("de.comahe.i18n4k") version "0.6.1"
}

// ####################################
Expand Down Expand Up @@ -68,7 +68,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("de.comahe.i18n4k:i18n4k-core:0.6.0")
implementation("de.comahe.i18n4k:i18n4k-core:0.6.1")
}
}
val commonTest by getting {
Expand Down
14 changes: 7 additions & 7 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.6.0
**Lastest release version:** 0.6.1

**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.6.0")
implementation("de.comahe.i18n4k:i18n4k-core:0.6.1")
}
}
```
Expand All @@ -110,15 +110,15 @@ val commonMain by getting {

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

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

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

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

```kotlin
plugins {
id("de.comahe.i18n4k") version "0.6.0"
id("de.comahe.i18n4k") version "0.6.1"
}
```

Expand Down Expand Up @@ -189,7 +189,7 @@ the `i184k` variable.

## Hints for Android

Since version 0.6.0 the generator plugin also supports Android projects.
Since version 0.5.0 the generator plugin also supports Android projects.

Generated resource files are not added to the "Java resource", but as "raw Android resources".
As Android does not allow sub-folders or uppercase letters, the resource name it adapted: packages
Expand Down Expand Up @@ -368,7 +368,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.6.0-blueviolet?style=flat
[badge-version]:https://img.shields.io/badge/version-0.6.1-blueviolet?style=flat

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

Expand Down

0 comments on commit c851619

Please sign in to comment.