Skip to content

Commit 4588aec

Browse files
committed
chore(publish): prepare for v0.8.0
1 parent f0638f3 commit 4588aec

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [Unreleased] - TBD
3+
## [0.8.0] - Jun 9, 2024
44

55
### Update dependencies
66

@@ -503,7 +503,9 @@ Share everything including data, domain, presentation, and UI.
503503

504504
- Initial release.
505505

506-
[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.7.1...HEAD
506+
[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.8.0...HEAD
507+
508+
[0.8.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.8.0
507509

508510
[0.7.1]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.7.1
509511

docs/viewmodel-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kotlin {
2525
sourceSets {
2626
val commonMain by getting {
2727
dependencies {
28-
implementation("io.github.hoc081098:kmp-viewmodel-compose:0.7.1")
28+
implementation("io.github.hoc081098:kmp-viewmodel-compose:0.8.0")
2929
}
3030
}
3131
}

docs/viewmodel-koin-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ kotlin {
3434
sourceSets {
3535
val commonMain by getting {
3636
dependencies {
37-
implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.7.1")
37+
implementation("io.github.hoc081098:kmp-viewmodel-koin-compose:0.8.0")
3838

3939
// NOTE: You can add `koin-core` dependency to your project to specify the version of Koin.
4040
// For more information check out the [Koin KMP documentation](https://insert-koin.io/docs/reference/koin-mp/kmp#gradle-dependencies).

docs/viewmodel-koject-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ kotlin {
3535
sourceSets {
3636
val commonMain by getting {
3737
dependencies {
38-
implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.7.1")
38+
implementation("io.github.hoc081098:kmp-viewmodel-koject-compose:0.8.0")
3939

4040
// NOTE: You can add `koject-core` dependency to your project to specify the version of Koject.
4141
// For more information check out the [Koject Setup documentation](https://mori-atsushi.github.io/koject/docs/setup#multiplatform).

docs/viewmodel-savedstate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kotlin {
3939
sourceSets {
4040
val commonMain by getting {
4141
dependencies {
42-
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1")
42+
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0")
4343
}
4444
}
4545
}
@@ -55,7 +55,7 @@ kotlin {
5555
[...]
5656
framework {
5757
baseName = "shared"
58-
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") // required to expose the classes to iOS.
58+
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0") // required to expose the classes to iOS.
5959
}
6060
}
6161
}
@@ -68,7 +68,7 @@ kotlin {
6868
binaries {
6969
framework {
7070
baseName = "shared"
71-
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.7.1") // required to expose the classes to iOS.
71+
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.8.0") // required to expose the classes to iOS.
7272
}
7373
}
7474
}

docs/viewmodel.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kotlin {
2525
sourceSets {
2626
val commonMain by getting {
2727
dependencies {
28-
api("io.github.hoc081098:kmp-viewmodel:0.7.1")
28+
api("io.github.hoc081098:kmp-viewmodel:0.8.0")
2929
}
3030
}
3131
}
@@ -41,7 +41,7 @@ kotlin {
4141
[...]
4242
framework {
4343
baseName = "shared"
44-
export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS.
44+
export("io.github.hoc081098:kmp-viewmodel:0.8.0") // required to expose the classes to iOS.
4545
}
4646
}
4747
}
@@ -54,7 +54,7 @@ kotlin {
5454
binaries {
5555
framework {
5656
baseName = "shared"
57-
export("io.github.hoc081098:kmp-viewmodel:0.7.1") // required to expose the classes to iOS.
57+
export("io.github.hoc081098:kmp-viewmodel:0.8.0") // required to expose the classes to iOS.
5858
}
5959
}
6060
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kotlin.incremental=true
2525
# POM
2626
GROUP=io.github.hoc081098
2727
# HEY! If you change the major version here be sure to update publish-release.yaml doc target folder!
28-
VERSION_NAME=0.7.2-SNAPSHOT
28+
VERSION_NAME=0.8.0
2929
POM_INCEPTION_YEAR=2023
3030

3131
POM_URL=https://github.com/hoc081098/kmp-viewmodel

0 commit comments

Comments
 (0)