diff --git a/README.md b/README.md index 73f12c97..b3e173f6 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ repositories { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.11-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.2.13-SNAPSHOT" } ``` @@ -89,7 +89,7 @@ allprojects { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.11" + implementation "com.github.skydoves:landscapist-glide:2.2.12" } ``` 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 9728f638..1d68d490 100644 --- a/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt +++ b/buildSrc/src/main/kotlin/com/github/skydoves/landscapist/Configuration.kt @@ -22,9 +22,9 @@ object Configuration { const val minSdk = 21 const val majorVersion = 2 const val minorVersion = 2 - const val patchVersion = 11 + const val patchVersion = 12 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 86 + const val versionCode = 87 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 9c539bbd..3488590b 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.2.11" + implementation "com.github.skydoves:landscapist-glide:2.2.12" } ``` @@ -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.2.11") + implementation("com.github.skydoves:landscapist-glide:2.2.12") } ``` diff --git a/docs/snapshot.md b/docs/snapshot.md index a3afe907..991d9ec3 100644 --- a/docs/snapshot.md +++ b/docs/snapshot.md @@ -32,7 +32,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```Groovy dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.11-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.2.13-SNAPSHOT" } ``` @@ -40,6 +40,6 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("com.github.skydoves:landscapist-glide:2.2.11-SNAPSHOT") + implementation("com.github.skydoves:landscapist-glide:2.2.13-SNAPSHOT") } ``` diff --git a/docs/version-map.md b/docs/version-map.md index 4b12f817..2cbd4271 100644 --- a/docs/version-map.md +++ b/docs/version-map.md @@ -1,10 +1,11 @@ # Version Map - +\ The Landscapist utilizes varying Compose versions and JVM targets for each release. This map will assist you in ensuring compatibility and smooth integration with your project. | Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco | |-------------|------------------------|------------|--------|-------|--------| +| 2.2.12 | 1.5.4 (BOM 2023.10.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 | | 2.2.11 | 1.5.4 (BOM 2023.10.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 | | 2.2.10 | 1.5.2 (BOM 2023.09.02) | 11 | 4.16.0 | 2.4.0 | 3.1.0 | | 2.2.9 | 1.5.1 (BOM 2023.09.00) | 11 | 4.16.0 | 2.4.0 | 3.1.0 |