Skip to content

Commit

Permalink
Bump dependencies (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
boguszpawlowski authored Oct 17, 2022
1 parent 6a1b44a commit 6fa69c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ gradlePlugin {

dependencies {
implementation("com.android.tools.build:gradle:7.2.1")
implementation(kotlin("gradle-plugin", "1.7.0"))
implementation(kotlin("gradle-plugin", "1.7.20"))
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/CommonAndroidPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CommonAndroidPlugin : Plugin<Project> {
buildFeatures.compose = true

composeOptions {
kotlinCompilerExtensionVersion = Compose.Version
kotlinCompilerExtensionVersion = Compose.CompilerVersion
}

target.dependencies.add("coreLibraryDesugaring", Kotlin.DesugarJdkLibs)
Expand Down
15 changes: 8 additions & 7 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@file:Suppress("ObjectPropertyNaming", "ClassNaming", "UnderscoresInNumericLiterals")
object MavenPublish {
const val PluginId = "com.vanniktech.maven.publish"
const val GradlePlugin = "com.vanniktech:gradle-maven-publish-plugin:0.18.0"
const val GradlePlugin = "com.vanniktech:gradle-maven-publish-plugin:0.19.0"
}

object AndroidSdk {
Expand All @@ -11,7 +11,7 @@ object AndroidSdk {
}

object Kotlin {
const val Version = "1.7.10"
const val Version = "1.7.20"
const val CompatibilityPluginVersion = "0.11.0"

const val GradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$Version"
Expand Down Expand Up @@ -78,7 +78,7 @@ object AndroidX {
const val LifecycleVersion = "2.2.0"

const val AppCompat = "androidx.appcompat:appcompat:1.4.1"
const val ComposeActivity = "androidx.activity:activity-compose:1.4.0"
const val ComposeActivity = "androidx.activity:activity-compose:1.5.1"
}

object Material {
Expand All @@ -101,11 +101,12 @@ object Timber {
}

object Compose {
const val Version = "1.2.0"
const val AccompanistVersion = "0.25.0"
const val Version = "1.2.1"
const val CompilerVersion = "1.3.2"
const val AccompanistVersion = "0.25.1"

const val Runtime = "androidx.compose.runtime:runtime:$Version"
const val Compiler = "androidx.compose.compiler:compiler:$Version"
const val Compiler = "androidx.compose.compiler:compiler:$CompilerVersion"
const val Foundation = "androidx.compose.foundation:foundation:$Version"
const val FoundationLayout = "androidx.compose.foundation:foundation-layout:$Version"
const val Material = "androidx.compose.material:material:$Version"
Expand All @@ -131,7 +132,7 @@ object Hyperion {
}

object Kotest {
const val Version = "5.4.1"
const val Version = "5.4.2"

const val RunnerJunit5 = "io.kotest:kotest-runner-junit5-jvm:$Version"

Expand Down

0 comments on commit 6fa69c9

Please sign in to comment.