From 4588aec26b01a21d07226e278a37908d24b0b45c Mon Sep 17 00:00:00 2001 From: hoc081098 Date: Sun, 9 Jun 2024 17:31:07 +0700 Subject: [PATCH] chore(publish): prepare for v0.8.0 --- .idea/misc.xml | 2 +- CHANGELOG.md | 6 ++++-- docs/viewmodel-compose.md | 2 +- docs/viewmodel-koin-compose.md | 2 +- docs/viewmodel-koject-compose.md | 2 +- docs/viewmodel-savedstate.md | 6 +++--- docs/viewmodel.md | 6 +++--- gradle.properties | 2 +- 8 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 758bcb3d..109ff682 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/CHANGELOG.md b/CHANGELOG.md index a88f7334..ef0e78cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] - TBD +## [0.8.0] - Jun 9, 2024 ### Update dependencies @@ -503,7 +503,9 @@ Share everything including data, domain, presentation, and UI. - Initial release. -[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.7.1...HEAD +[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.8.0...HEAD + +[0.8.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.8.0 [0.7.1]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.7.1 diff --git a/docs/viewmodel-compose.md b/docs/viewmodel-compose.md index eb4cc9a1..8fbe0eb5 100644 --- a/docs/viewmodel-compose.md +++ b/docs/viewmodel-compose.md @@ -25,7 +25,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - implementation("io.github.hoc081098:kmp-viewmodel-compose:0.7.1") + implementation("io.github.hoc081098:kmp-viewmodel-compose:0.8.0") } } } diff --git a/docs/viewmodel-koin-compose.md b/docs/viewmodel-koin-compose.md index f28bbea3..23c955a0 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.1") + implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.8.0") // 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). diff --git a/docs/viewmodel-koject-compose.md b/docs/viewmodel-koject-compose.md index bea95a30..a3dcefba 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.1") + implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.8.0") // 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). diff --git a/docs/viewmodel-savedstate.md b/docs/viewmodel-savedstate.md index 943d57cd..d400e04a 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.1") + api("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0") } } } @@ -55,7 +55,7 @@ kotlin { [...] framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0") // 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.1") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0") // required to expose the classes to iOS. } } } diff --git a/docs/viewmodel.md b/docs/viewmodel.md index 6491f020..f30ca1c0 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.1") + api("io.github.hoc081098:kmp-viewmodel:0.8.0") } } } @@ -41,7 +41,7 @@ kotlin { [...] framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel:0.8.0") // required to expose the classes to iOS. } } } @@ -54,7 +54,7 @@ kotlin { binaries { framework { baseName = "shared" - export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS. + export("io.github.hoc081098:kmp-viewmodel:0.8.0") // required to expose the classes to iOS. } } } diff --git a/gradle.properties b/gradle.properties index 3fccef06..6028ccc1 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.2-SNAPSHOT +VERSION_NAME=0.8.0 POM_INCEPTION_YEAR=2023 POM_URL=https://github.com/hoc081098/kmp-viewmodel