Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
boguszpawlowski committed Oct 17, 2022
1 parent c491f7e commit 6ed5533
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
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
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
@@ -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
Expand Up @@ -13,6 +13,7 @@ import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.KeyboardArrowLeft
import androidx.compose.material.icons.filled.KeyboardArrowRight
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.ColorFilter
import androidx.compose.ui.platform.testTag
Expand All @@ -32,6 +33,7 @@ public fun DefaultMonthHeader(
Row(
modifier = modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.Center,
verticalAlignment = Alignment.CenterVertically,
) {
IconButton(
modifier = Modifier.testTag("Decrement"),
Expand Down

0 comments on commit 6ed5533

Please sign in to comment.