diff --git a/README.md b/README.md index 0338c0bc..c2129798 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.0") + implementation("com.github.skydoves:landscapist-glide:2.4.1") } ``` 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 f6ceff70..915ee9c1 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 = 0 + const val patchVersion = 1 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 99 + const val versionCode = 100 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 7b9f2473..c990b022 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.0" + implementation "com.github.skydoves:landscapist-glide:2.4.1" } ``` @@ -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.0") + implementation("com.github.skydoves:landscapist-glide:2.4.1") } ``` diff --git a/docs/version-map.md b/docs/version-map.md index 20c67f6f..91d03e2f 100644 --- a/docs/version-map.md +++ b/docs/version-map.md @@ -5,6 +5,8 @@ The Landscapist utilizes varying Compose versions and JVM targets for each relea | Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco | |-------------|------------------------|------------|--------|-------|--------| +| 2.4.1 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 | +| 2.4.0 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 | | 2.3.2 | 1.6.2 (BOM 2024.02.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 | | 2.3.1 | 1.6.1 (BOM 2024.02.00) | 11 | 4.16.0 | 2.5.0 | 3.1.3 | | 2.3.0 | 1.6.0 (BOM 2024.01.00) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |