From 44e4de96efe1917a8dcdec187c935b645deac178 Mon Sep 17 00:00:00 2001 From: skydoves Date: Tue, 26 Nov 2024 15:18:38 +0900 Subject: [PATCH] Preapre for the next release --- README.md | 2 +- .../kotlin/com/github/skydoves/landscapist/Configuration.kt | 4 ++-- docs/glide/overview.md | 4 ++-- docs/version-map.md | 1 + gradle/libs.versions.toml | 2 +- settings.gradle.kts | 2 -- 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6d6238e9..0f4cbb44 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation("com.github.skydoves:landscapist-glide:2.4.3") + implementation("com.github.skydoves:landscapist-glide:2.4.4") } ``` diff --git a/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt b/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt index 4abf47d2..acc2a5d2 100644 --- a/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt +++ b/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt @@ -23,9 +23,9 @@ object Configuration { const val minSdk24 = 24 const val majorVersion = 2 const val minorVersion = 4 - const val patchVersion = 3 + const val patchVersion = 4 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 102 + const val versionCode = 103 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "com.github.skydoves" } diff --git a/docs/glide/overview.md b/docs/glide/overview.md index 882e54f3..e0c761ef 100644 --- a/docs/glide/overview.md +++ b/docs/glide/overview.md @@ -23,7 +23,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```Groovy dependencies { - implementation "com.github.skydoves:landscapist-glide:2.4.3" + implementation "com.github.skydoves:landscapist-glide:2.4.4" } ``` @@ -31,7 +31,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("com.github.skydoves:landscapist-glide:2.4.3") + implementation("com.github.skydoves:landscapist-glide:2.4.4") } ``` diff --git a/docs/version-map.md b/docs/version-map.md index dd2b8db2..1a413d4d 100644 --- a/docs/version-map.md +++ b/docs/version-map.md @@ -5,6 +5,7 @@ The Landscapist utilizes varying Compose versions and JVM targets for each relea | Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco | |-------------|------------------------|------------|--------|-------|--------| +| 2.4.4 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.4 | 3.3.0 | | 2.4.3 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.3 | 3.3.0 | | 2.4.2 | 1.7.5 (BOM 2024.10.01) | 11 | 4.16.0 | 3.0.0 | 3.3.0 | | 2.4.1 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 | diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1b4739e2..49ed0d08 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -18,7 +18,7 @@ androidxMacroBenchmark = "1.4.0-alpha05" androidxProfileinstaller = "1.4.1" androidxUiAutomator = "2.3.0" kotlinxSerializationJson = "1.7.3" -jetbrains-compose = "1.8.0+check" +jetbrains-compose = "1.7.1" glide = "4.16.0" fresco = "3.5.0" coil = "2.7.0" diff --git a/settings.gradle.kts b/settings.gradle.kts index d26cd7a9..1ef1c3fb 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -6,7 +6,6 @@ pluginManagement { gradlePluginPortal() mavenCentral() maven(url = "https://plugins.gradle.org/m2/") - maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev") } } dependencyResolutionManagement { @@ -15,7 +14,6 @@ dependencyResolutionManagement { google() mavenCentral() maven(url = "https://plugins.gradle.org/m2/") - maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev") } }