From e06aad085c877f72b70aece6cd7e2010a1b388ab Mon Sep 17 00:00:00 2001 From: skydoves Date: Sat, 13 Apr 2024 13:05:51 +0900 Subject: [PATCH] Prepare for release 2.3.3 --- README.md | 2 +- .../kotlin/com/github/skydoves/landscapist/Configuration.kt | 4 ++-- docs/glide/overview.md | 4 ++-- docs/snapshot.md | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ed6fc980..489b8de8 100644 --- a/README.md +++ b/README.md @@ -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.3.2" + implementation "com.github.skydoves:landscapist-glide:2.3.3" } ``` 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 68062fee..8ef49bc9 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 = 3 - const val patchVersion = 2 + const val patchVersion = 3 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 92 + const val versionCode = 93 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 186220b9..b2882336 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.3.2" + implementation "com.github.skydoves:landscapist-glide:2.3.3" } ``` @@ -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.3.2") + implementation("com.github.skydoves:landscapist-glide:2.3.3") } ``` diff --git a/docs/snapshot.md b/docs/snapshot.md index 662297a9..b00dc758 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.3.2-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.3.4-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.3.2-SNAPSHOT") + implementation("com.github.skydoves:landscapist-glide:2.3.4-SNAPSHOT") } ```