Skip to content

Commit

Permalink
chore(publish): prepare version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Mar 18, 2023
1 parent 37d8781 commit 7d192fb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.3.0] - Mar 18, 2023

### Added

- Add `NonNullFlowWrapper` and `NullableFlowWrapper`, that are wrappers for `Flow`s
Expand Down Expand Up @@ -65,7 +67,8 @@

- Initial release.

[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.2.0...HEAD
[Unreleased]: https://github.com/hoc081098/kmp-viewmodel/compare/0.3.0...HEAD
[0.3.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.3.0
[0.2.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.2.0
[0.1.0]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.1.0
[0.0.1]: https://github.com/hoc081098/kmp-viewmodel/releases/tag/0.0.1
8 changes: 4 additions & 4 deletions docs/viewmodel-savedstate.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.2.0")
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.3.0")
}
}
}
Expand All @@ -53,7 +53,7 @@ kotlin {
[...]
framework {
baseName = "shared"
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.2.0") // required to expose the classes to iOS.
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.3.0") // required to expose the classes to iOS.
}
}
}
Expand All @@ -66,7 +66,7 @@ kotlin {
binaries {
framework {
baseName = "shared"
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.2.0") // required to expose the classes to iOS.
export("io.github.hoc081098:kmp-viewmodel-savedstate:0.3.0") // required to expose the classes to iOS.
}
}
}
Expand Down Expand Up @@ -99,7 +99,7 @@ dependencyResolutionManagement {

// build.gradle.kts
dependencies {
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.2.1-SNAPSHOT")
api("io.github.hoc081098:kmp-viewmodel-savedstate:0.3.1-SNAPSHOT")
}
```

Expand Down
8 changes: 4 additions & 4 deletions docs/viewmodel.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api("io.github.hoc081098:kmp-viewmodel:0.2.0")
api("io.github.hoc081098:kmp-viewmodel:0.3.0")
}
}
}
Expand All @@ -39,7 +39,7 @@ kotlin {
[...]
framework {
baseName = "shared"
export("io.github.hoc081098:kmp-viewmodel:0.2.0") // required to expose the classes to iOS.
export("io.github.hoc081098:kmp-viewmodel:0.3.0") // required to expose the classes to iOS.
}
}
}
Expand All @@ -52,7 +52,7 @@ kotlin {
binaries {
framework {
baseName = "shared"
export("io.github.hoc081098:kmp-viewmodel:0.2.0") // required to expose the classes to iOS.
export("io.github.hoc081098:kmp-viewmodel:0.3.0") // required to expose the classes to iOS.
}
}
}
Expand All @@ -75,7 +75,7 @@ dependencyResolutionManagement {

// build.gradle.kts
dependencies {
api("io.github.hoc081098:kmp-viewmodel:0.2.1-SNAPSHOT")
api("io.github.hoc081098:kmp-viewmodel:0.3.1-SNAPSHOT")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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.2.1-SNAPSHOT
VERSION_NAME=0.3.0
POM_INCEPTION_YEAR=2023

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

0 comments on commit 7d192fb

Please sign in to comment.