Skip to content

Commit

Permalink
Updated Jetpack Compose to 1.0.4 and Kotlin to 1.5.31
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanMcKee committed Oct 17, 2021
1 parent 7072bc2 commit 1ae5d6d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
===========

Version 1.0.4 *(2021-10-17)*
----------------------------

* Updated to Compose 1.0.4
* Updated to Kotlin 1.5.31

Version 1.0.3 *(2021-10-02)*
----------------------------

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.3'
annotationProcessor 'net.lachlanmckee:hilt-compose-navigation-factory-compiler:1.0.3'
implementation 'net.lachlanmckee:hilt-compose-navigation-factory:1.0.4'
annotationProcessor 'net.lachlanmckee:hilt-compose-navigation-factory-compiler:1.0.4'
```
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.3
VERSION_NAME=1.0.4

POM_DESCRIPTION=Provides a mechanism to scale Jetpack Compose navigation across numerous modules.
POM_INCEPTION_YEAR=2021
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
compose = "1.0.3"
compose = "1.0.4"
dagger = "2.39.1"
kotlin = "1.5.30"
kotlin = "1.5.31"
autoService = "1.0"
incap = "0.3"
javapoet = "1.13.0"
Expand All @@ -10,7 +10,7 @@ androidXTest = "1.4.0"
compileSdk = "31"
minSdk = "21"
targetSdk = "30"
spotless = "5.14.2"
spotless = "5.17.0"
dependencyUpdates = "0.39.0"

[plugins]
Expand All @@ -37,7 +37,7 @@ dagger-hilt-navigationCompose = "androidx.hilt:hilt-navigation-compose:1.0.0-alp
incap-compiler = { module = "net.ltgt.gradle.incap:incap-processor", version.ref = "incap" }
incap-core = { module = "net.ltgt.gradle.incap:incap", version.ref = "incap" }
javapoet = { module = "com.squareup:javapoet", version.ref = "javapoet" }
auto-common = "com.google.auto:auto-common:1.1.2"
auto-common = "com.google.auto:auto-common:1.2"
auto-service-annotations = { module = "com.google.auto.service:auto-service-annotations", version.ref = "autoService" }
auto-service-compiler = { module = "com.google.auto.service:auto-service", version.ref = "autoService" }

Expand All @@ -49,11 +49,11 @@ espresso-orchestrator = { module = "androidx.test:orchestrator", version.ref = "
compose-testing = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "compose" }

# Gradle plugins
plugin-androidTools = "com.android.tools.build:gradle:7.0.2"
plugin-androidTools = "com.android.tools.build:gradle:7.0.3"
plugin-hiltAndroidGradle = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "dagger" }
plugin-kotlinGradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
plugin-mavenPublish = "com.vanniktech:gradle-maven-publish-plugin:0.18.0"
plugin-dokka = "org.jetbrains.dokka:dokka-gradle-plugin:1.5.30"
plugin-dokka = "org.jetbrains.dokka:dokka-gradle-plugin:1.5.31"

[bundles]
daggerRuntimes = ["dagger-runtime", "dagger-hilt-runtime"]
Expand Down

0 comments on commit 1ae5d6d

Please sign in to comment.