Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
barnhill committed Dec 9, 2023
1 parent d05076e commit fc0ff8b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
extra["gradleVersion"] = "8.3"
extra["gradleVersion"] = "8.5"
repositories {
google()
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android.useAndroidX=true
android.enableJetifier=false

GROUP=com.pnuema.android
VERSION_NAME=2.11.0
VERSION_NAME=2.12.0

POM_NAME=SaveStateObserver
POM_ARTIFACT_ID=savestateobserver
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
#libs
kotlinx-serialization = "1.5.1"
vanniktech-maven-publish = "0.25.2"
evalex = "3.0.5"
vanniktech-maven-publish = "0.25.3"
evalex = "3.1.0"
androidx-startup = "1.1.1"
androidx-appcompat = "1.6.1"
androidx-fragment-ktx = "1.6.1"
android-material = "1.9.0"
androidx-fragment-ktx = "1.6.2"
android-material = "1.10.0"
junit = "4.13.2"

#plugins
kotlin= "1.9.0"
gradlePlugins-agp = "8.1.1"
kotlin= "1.9.21"
gradlePlugins-agp = "8.2.0"
tomlChecker = "0.47.0"
gradleCacheFix = "2.7.1"
dokka = "1.8.20"
gradleCacheFix = "3.0"
dokka = "1.9.10"

[libraries]
dokka-gradle = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka" }
Expand Down
2 changes: 1 addition & 1 deletion savestateobserver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
alias(libs.plugins.toml.version.checker)
}

version = "2.11.0"
version = "2.12.0"
group = "com.pnuema.android"

android {
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pluginManagement {
}

plugins {
id("com.gradle.enterprise") version "3.13.4"
id("com.gradle.enterprise") version "3.16"
}

dependencyResolutionManagement {
Expand Down Expand Up @@ -43,7 +43,7 @@ if (cacheUrl != null) {
isAllowUntrustedServer = true
isAllowInsecureProtocol = false
if (isEnabled) {
println("Using remote build cache: " + cacheUrl)
println("Using remote build cache: $cacheUrl")
}
credentials {
username = if (System.getenv("REMOTE_CACHE_USER") == null) extra["REMOTE_CACHE_USER"] as String else System.getenv("REMOTE_CACHE_USER")
Expand Down

0 comments on commit fc0ff8b

Please sign in to comment.