Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Apr 25, 2022
1 parent 16babac commit 294d73b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kotlin.mpp.enableGranularSourceSetsMetadata=true

# Maven
GROUP=cafe.adriel.voyager
VERSION_NAME=1.0.0-beta16
VERSION_NAME=1.0.0-rc01

POM_DESCRIPTION=A pragmatic navigation library for Jetpack Compose
POM_INCEPTION_YEAR=2021
Expand All @@ -17,9 +17,9 @@ POM_LICENCE_URL=https://opensource.org/licenses/MIT
POM_LICENCE_DIST=repo

POM_SCM_URL=https://github.com/adrielcafe/voyager
POM_SCM_CONNECTION=scm:git:git://github.com/adrielcafe/voyager.git
POM_SCM_CONNECTION=scm:git:ssh://git@github.com/adrielcafe/voyager.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/adrielcafe/voyager.git

POM_DEVELOPER_ID=adrielcafe
POM_DEVELOPER_NAME=Adriel Café
POM_DEVELOPER_NAME=Adriel Cafe
POM_DEVELOPER_URL=https://github.com/adrielcafe/
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ class DetailsScreenModel(
mutableState.value = State.Result("Item #$index")
}
}

override fun onDispose() {
println("ScreenModel: dispose details")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ import cafe.adriel.voyager.sample.sampleItems
class ListScreenModel : ScreenModel {

val items = sampleItems

override fun onDispose() {
println("ScreenModel: dispose list")
}
}

0 comments on commit 294d73b

Please sign in to comment.