Skip to content

Commit

Permalink
Updated Jetpack Compose to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Nov 11, 2021
1 parent 1ae5d6d commit 1c76764
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
```
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.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
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
[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"
androidXTest = "1.4.0"
compileSdk = "31"
minSdk = "21"
targetSdk = "30"
spotless = "5.17.0"
spotless = "6.0.0"
dependencyUpdates = "0.39.0"

[plugins]
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" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1c76764

Please sign in to comment.