Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Oct 6, 2021
1 parent 2414d56 commit 974731d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kotlin.code.style=official

# Maven
GROUP=cafe.adriel.voyager
VERSION_NAME=1.0.0-beta11
VERSION_NAME=1.0.0-beta12

POM_DESCRIPTION=A pragmatic navigation library for Jetpack Compose
POM_INCEPTION_YEAR=2021
Expand Down
18 changes: 9 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[versions]
plugin-android = "7.0.2"
plugin-ktlint = "10.1.0"
plugin-ktlint = "10.2.0"
plugin-maven = "0.18.0"

kotlin = "1.5.30"
kotlin = "1.5.31"
kodein = "7.8.0"
koin = "3.1.2"
hilt = "2.39.1"
leakCanary = "2.7"
appCompat = "1.3.1"
lifecycle = "2.4.0-beta01"
compose = "1.1.0-alpha04"
composeActivity = "1.3.1"
hilt = "2.38.1"
appCompat = "1.4.0-beta01"
lifecycle = "2.4.0-rc01"
compose = "1.1.0-alpha05"
composeActivity = "1.4.0-beta01"

junit = "5.7.2"

Expand All @@ -25,6 +25,8 @@ plugin-hilt = { module = "com.google.dagger:hilt-android-gradle-plugin", version
leakCanary = { module = "com.squareup.leakcanary:leakcanary-android", version.ref = "leakCanary" }
kodein = { module = "org.kodein.di:kodein-di-framework-compose", version.ref = "kodein" }
koin = { module = "io.insert-koin:koin-androidx-compose", version.ref = "koin" }
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
appCompat = { module = "androidx.appcompat:appcompat", version.ref = "appCompat" }
lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
lifecycle-savedState = { module = "androidx.lifecycle:lifecycle-viewmodel-savedstate", version.ref = "lifecycle" }
Expand All @@ -40,8 +42,6 @@ compose-animation = { module = "androidx.compose.animation:animation", version.r
compose-material = { module = "androidx.compose.material:material", version.ref = "compose" }
compose-materialIcons = { module = "androidx.compose.material:material-icons-core", version.ref = "compose" }
compose-activity = { module = "androidx.activity:activity-compose", version.ref = "composeActivity" }
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }

junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public fun SlideTransition(

when (orientation) {
SlideOrientation.Horizontal ->
slideInHorizontally(initialOffset, animationSpec) with
slideOutHorizontally(targetOffset, animationSpec)
slideInHorizontally(animationSpec, initialOffset) with
slideOutHorizontally(animationSpec, targetOffset)
SlideOrientation.Vertical ->
slideInVertically(initialOffset, animationSpec) with
slideOutVertically(targetOffset, animationSpec)
slideInVertically(animationSpec, initialOffset) with
slideOutVertically(animationSpec, targetOffset)
}
}
)
Expand Down

0 comments on commit 974731d

Please sign in to comment.