diff --git a/docs/viewmodel-compose.md b/docs/viewmodel-compose.md index 1ec7f7bd..eb4cc9a1 100644 --- a/docs/viewmodel-compose.md +++ b/docs/viewmodel-compose.md @@ -25,7 +25,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("io.github.hoc081098:kmp-viewmodel-compose:0.7.0") + implementation("io.github.hoc081098:kmp-viewmodel-compose:0.7.1") } } } @@ -48,7 +48,7 @@ dependencyResolutionManagement { // build.gradle.kts dependencies { - api("io.github.hoc081098:kmp-viewmodel-compose:0.7.1-SNAPSHOT") + implementation("io.github.hoc081098:kmp-viewmodel-compose:0.7.2-SNAPSHOT") } ``` diff --git a/docs/viewmodel-koin-compose.md b/docs/viewmodel-koin-compose.md index d9ea8c33..f28bbea3 100644 --- a/docs/viewmodel-koin-compose.md +++ b/docs/viewmodel-koin-compose.md @@ -34,7 +34,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.7.0") + implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.7.1") // NOTE: You can add `koin-core` dependency to your project to specify the version of Koin. // For more information check out the [Koin KMP documentation](https://insert-koin.io/docs/reference/koin-mp/kmp#gradle-dependencies). @@ -61,7 +61,7 @@ dependencyResolutionManagement { // build.gradle.kts dependencies { - api("io.github.hoc081098:kmp-viewmodel-koin-compose:0.7.1-SNAPSHOT") + implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.7.2-SNAPSHOT") } ``` diff --git a/docs/viewmodel-koject-compose.md b/docs/viewmodel-koject-compose.md index 70fc1305..bea95a30 100644 --- a/docs/viewmodel-koject-compose.md +++ b/docs/viewmodel-koject-compose.md @@ -35,7 +35,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.7.0") + implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.7.1") // NOTE: You can add `koject-core` dependency to your project to specify the version of Koject. // For more information check out the [Koject Setup documentation](https://mori-atsushi.github.io/koject/docs/setup#multiplatform). @@ -83,7 +83,7 @@ dependencyResolutionManagement { // build.gradle.kts dependencies { - api("io.github.hoc081098:kmp-viewmodel-koject-compose:0.7.1-SNAPSHOT") + implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.7.2-SNAPSHOT") } ``` diff --git a/docs/viewmodel-savedstate.md b/docs/viewmodel-savedstate.md index b0af8f40..edc2f5e7 100644 --- a/docs/viewmodel-savedstate.md +++ b/docs/viewmodel-savedstate.md @@ -39,7 +39,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.0") + api("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") } } } @@ -55,7 +55,7 @@ kotlin { [...] framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.0") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") // required to expose the classes to iOS. } } } @@ -68,7 +68,7 @@ kotlin { binaries { framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.0") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") // required to expose the classes to iOS. } } } @@ -101,7 +101,7 @@ dependencyResolutionManagement { // build.gradle.kts dependencies { - api("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1-SNAPSHOT") + api("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.2-SNAPSHOT") } ``` diff --git a/docs/viewmodel.md b/docs/viewmodel.md index 5982f01a..6491f020 100644 --- a/docs/viewmodel.md +++ b/docs/viewmodel.md @@ -25,7 +25,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("io.github.hoc081098:kmp-viewmodel:0.7.0") + api("io.github.hoc081098:kmp-viewmodel:0.7.1") } } } @@ -41,7 +41,7 @@ kotlin { [...] framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel:0.7.0") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS. } } } @@ -54,7 +54,7 @@ kotlin { binaries { framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel:0.7.0") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS. } } } @@ -77,7 +77,7 @@ dependencyResolutionManagement { // build.gradle.kts dependencies { - api("io.github.hoc081098:kmp-viewmodel:0.7.1-SNAPSHOT") + api("io.github.hoc081098:kmp-viewmodel:0.7.2-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index dafcc2f9..878f2cff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ kotlin.incremental=true # POM GROUP=io.github.hoc081098 # HEY! If you change the major version here be sure to update publish-release.yaml doc target folder! -VERSION_NAME=0.7.1-SNAPSHOT +VERSION_NAME=0.7.1 POM_INCEPTION_YEAR=2023 POM_URL=https://github.com/hoc081098/kmp-viewmodel