From 71950ea6202e8fdd77c73a34d1807e9840993d3e Mon Sep 17 00:00:00 2001 From: skydoves Date: Wed, 31 May 2023 20:33:18 +0900 Subject: [PATCH] Prepare for the next release --- README.md | 6 +++--- .../kotlin/com/github/skydoves/landscapist/Configuration.kt | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e648d0c8..81b43968 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ repositories { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.1-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.2.2-SNAPSHOT" } ``` @@ -85,11 +85,11 @@ allprojects { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.0" + implementation "com.github.skydoves:landscapist-glide:2.2.1" } ``` -> **Note**: `Landscapist-Glide` includes version `4.14.2` of [Glide](https://github.com/bumptech/glide) internally. So please make sure your project is using the same Glide version or exclude the Glide dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases). +> **Note**: `Landscapist-Glide` includes version `4.15.1` of [Glide](https://github.com/bumptech/glide) internally. So please make sure your project is using the same Glide version or exclude the Glide dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases). ### GlideImage You can load images simply by using `GlideImage` composable function as the following example below: 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 0623a734..c1546968 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 = 0 + const val patchVersion = 1 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 75 + const val versionCode = 76 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "com.github.skydoves" }