Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed May 31, 2023
1 parent 41979dc commit 71950ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```
</details>
Expand All @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 71950ea

Please sign in to comment.