Skip to content

Commit 314759f

Browse files
committed
chore(publish): prepare for 0.6.0
1 parent 8e95690 commit 314759f

File tree

5 files changed

+21
-25
lines changed

5 files changed

+21
-25
lines changed

CHANGELOG.md

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

3-
## [0.6.0] - TBD
3+
## [Unreleased]
4+
5+
## [0.6.0] - Dec 8, 2023
46

57
### Update dependencies
68

@@ -87,26 +89,18 @@
8789
to get the default `CreationExtras` and `ViewModelStoreOwner`,
8890
which depends on the platform.
8991

90-
-
91-
92-
Dependencies: [Compose Multiplatform 1.5.0](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.5.0).
93-
94-
-
92+
- Dependencies: [Compose Multiplatform 1.5.0](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.5.0).
9593

96-
Docs: [0.x Viewmodel-Compose docs](https://hoc081098.github.io/kmp-viewmodel/docs/0.x/viewmodel-compose/).
94+
- Docs: [0.x Viewmodel-Compose docs](https://hoc081098.github.io/kmp-viewmodel/docs/0.x/viewmodel-compose/).
9795

9896
### Example, docs and tests
9997

10098
- Refactor example code.
10199

102-
-
103-
104-
Add [Compose Multiplatform sample](https://github.com/hoc081098/kmp-viewmodel/tree/master/standalone-sample/kmpviewmodel_compose_sample)
100+
- Add [Compose Multiplatform sample](https://github.com/hoc081098/kmp-viewmodel/tree/master/standalone-sample/kmpviewmodel_compose_sample)
105101
which shares `ViewModel`s and integrates with `Navigation` in Compose Multiplatform.
106102

107-
-
108-
109-
Add [Compose Multiplatform KmpViewModel KMM Unsplash Sample](https://github.com/hoc081098/Compose-Multiplatform-KmpViewModel-KMM-Unsplash-Sample),
103+
- Add [Compose Multiplatform KmpViewModel KMM Unsplash Sample](https://github.com/hoc081098/Compose-Multiplatform-KmpViewModel-KMM-Unsplash-Sample),
110104
a KMP template of the Unsplash App using Compose multiplatform for Android, Desktop, iOS.
111105
Share everything including data, domain, presentation, and UI.
112106

@@ -243,7 +237,9 @@ Share everything including data, domain, presentation, and UI.
243237

244238
- Initial release.
245239

246-
[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.5.0...HEAD
240+
[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.6.0...HEAD
241+
242+
[0.6.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.6.0
247243

248244
[0.5.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.5.0
249245

docs/viewmodel-compose.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kotlin {
2323
sourceSets {
2424
val commonMain by getting {
2525
dependencies {
26-
api("io.github.hoc081098:kmp-viewmodel-compose:0.5.0")
26+
api("io.github.hoc081098:kmp-viewmodel-compose:0.6.0")
2727
}
2828
}
2929
}
@@ -46,7 +46,7 @@ dependencyResolutionManagement {
4646

4747
// build.gradle.kts
4848
dependencies {
49-
api("io.github.hoc081098:kmp-viewmodel-compose:0.5.1-SNAPSHOT")
49+
api("io.github.hoc081098:kmp-viewmodel-compose:0.6.1-SNAPSHOT")
5050
}
5151
```
5252

docs/viewmodel-savedstate.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ kotlin {
3737
sourceSets {
3838
val commonMain by getting {
3939
dependencies {
40-
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.5.0")
40+
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.6.0")
4141
}
4242
}
4343
}
@@ -53,7 +53,7 @@ kotlin {
5353
[...]
5454
framework {
5555
baseName = "shared"
56-
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.5.0") // required to expose the classes to iOS.
56+
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.6.0") // required to expose the classes to iOS.
5757
}
5858
}
5959
}
@@ -66,7 +66,7 @@ kotlin {
6666
binaries {
6767
framework {
6868
baseName = "shared"
69-
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.5.0") // required to expose the classes to iOS.
69+
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.6.0") // required to expose the classes to iOS.
7070
}
7171
}
7272
}
@@ -99,7 +99,7 @@ dependencyResolutionManagement {
9999

100100
// build.gradle.kts
101101
dependencies {
102-
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.5.1-SNAPSHOT")
102+
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.6.1-SNAPSHOT")
103103
}
104104
```
105105

docs/viewmodel.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kotlin {
2323
sourceSets {
2424
val commonMain by getting {
2525
dependencies {
26-
api("io.github.hoc081098:kmp-viewmodel:0.5.0")
26+
api("io.github.hoc081098:kmp-viewmodel:0.6.0")
2727
}
2828
}
2929
}
@@ -39,7 +39,7 @@ kotlin {
3939
[...]
4040
framework {
4141
baseName = "shared"
42-
export("io.github.hoc081098:kmp-viewmodel:0.5.0") // required to expose the classes to iOS.
42+
export("io.github.hoc081098:kmp-viewmodel:0.6.0") // required to expose the classes to iOS.
4343
}
4444
}
4545
}
@@ -52,7 +52,7 @@ kotlin {
5252
binaries {
5353
framework {
5454
baseName = "shared"
55-
export("io.github.hoc081098:kmp-viewmodel:0.5.0") // required to expose the classes to iOS.
55+
export("io.github.hoc081098:kmp-viewmodel:0.6.0") // required to expose the classes to iOS.
5656
}
5757
}
5858
}
@@ -75,7 +75,7 @@ dependencyResolutionManagement {
7575

7676
// build.gradle.kts
7777
dependencies {
78-
api("io.github.hoc081098:kmp-viewmodel:0.5.1-SNAPSHOT")
78+
api("io.github.hoc081098:kmp-viewmodel:0.6.1-SNAPSHOT")
7979
}
8080
```
8181

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.6.0-SNAPSHOT
28+
VERSION_NAME=0.6.0
2929
POM_INCEPTION_YEAR=2023
3030

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

0 commit comments

Comments
 (0)