Skip to content

Commit

Permalink
chore(publish): prepare for v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Jun 9, 2024
1 parent f0638f3 commit 4588aec
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [Unreleased] - TBD
## [0.8.0] - Jun 9, 2024

### Update dependencies

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/viewmodel-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/viewmodel-koin-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion docs/viewmodel-koject-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions docs/viewmodel-savedstate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand All @@ -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.
}
}
}
Expand All @@ -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.
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/viewmodel.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand All @@ -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.
}
}
}
Expand All @@ -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.
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4588aec

Please sign in to comment.