diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d0b21a..ae03fe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log =========== +Version 1.0.5 *(2021-11-11)* +---------------------------- + +* Updated to Compose 1.0.5 + Version 1.0.4 *(2021-10-17)* ---------------------------- diff --git a/README.md b/README.md index d326521..eeba071 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,6 @@ To see this in practice, please take a look at the [sample](sample) directory. This library is available on Maven, you can add it to your project using the following gradle dependencies: ```gradle -implementation 'net.lachlanmckee:hilt-compose-navigation-factory:1.0.4' -annotationProcessor 'net.lachlanmckee:hilt-compose-navigation-factory-compiler:1.0.4' +implementation 'net.lachlanmckee:hilt-compose-navigation-factory:1.0.5' +annotationProcessor 'net.lachlanmckee:hilt-compose-navigation-factory-compiler:1.0.5' ``` diff --git a/gradle.properties b/gradle.properties index fd38b61..4564026 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,7 +26,7 @@ kotlin.code.style=official # Maven GROUP=net.lachlanmckee -VERSION_NAME=1.0.4 +VERSION_NAME=1.0.5 POM_DESCRIPTION=Provides a mechanism to scale Jetpack Compose navigation across numerous modules. POM_INCEPTION_YEAR=2021 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a2d668c..8836b8d 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,8 +1,8 @@ [versions] -compose = "1.0.4" -dagger = "2.39.1" +compose = "1.0.5" +dagger = "2.40.1" kotlin = "1.5.31" -autoService = "1.0" +autoService = "1.0.1" incap = "0.3" javapoet = "1.13.0" espresso = "3.4.0" @@ -10,7 +10,7 @@ androidXTest = "1.4.0" compileSdk = "31" minSdk = "21" targetSdk = "30" -spotless = "5.17.0" +spotless = "6.0.0" dependencyUpdates = "0.39.0" [plugins] @@ -18,15 +18,15 @@ spotless = { id = "com.diffplug.spotless", version.ref = "spotless" } dependencyUpdates = { id = "com.github.ben-manes.versions", version.ref = "dependencyUpdates" } [libraries] -androidx-activityCompose = "androidx.activity:activity-compose:1.3.1" +androidx-activityCompose = "androidx.activity:activity-compose:1.4.0" androidx-appcompat = "androidx.appcompat:appcompat:1.3.1" -androidx-lifecycle-livedata = "androidx.lifecycle:lifecycle-livedata-ktx:2.3.1" +androidx-lifecycle-livedata = "androidx.lifecycle:lifecycle-livedata-ktx:2.4.0" compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" } compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" } compose-material = { module = "androidx.compose.material:material", version.ref = "compose" } compose-runtime-livedata = { module = "androidx.compose.runtime:runtime-livedata", version.ref = "compose" } -compose-navigation = "androidx.navigation:navigation-compose:2.4.0-alpha10" +compose-navigation = "androidx.navigation:navigation-compose:2.4.0-beta02" dagger-runtime = { module = "com.google.dagger:dagger", version.ref = "dagger" } dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index cb76290..e226c42 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https://services.gradle.org/distributions/gradle-7.2-all.zip +distributionUrl=https://services.gradle.org/distributions/gradle-7.3-all.zip