Skip to content

Commit

Permalink
Prepare for release 2.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Nov 2, 2023
1 parent 4d4cd4a commit 6b6618f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10"
implementation "com.github.skydoves:landscapist-glide:2.2.11"
}
```

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 = 10
const val patchVersion = 11
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 85
const val versionCode = 86
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}
4 changes: 2 additions & 2 deletions docs/glide/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Next, add the dependency below to your **module**'s `build.gradle` file:

```Groovy
dependencies {
implementation "com.github.skydoves:landscapist-glide:2.2.10"
implementation "com.github.skydoves:landscapist-glide:2.2.11"
}
```

=== "KTS"

```kotlin
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.2.10")
implementation("com.github.skydoves:landscapist-glide:2.2.11")
}
```

Expand Down
1 change: 1 addition & 0 deletions docs/version-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The Landscapist utilizes varying Compose versions and JVM targets for each relea

| Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco |
|-------------|------------------------|------------|--------|-------|--------|
| 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 |
| 2.2.8 | 1.5.0 (BOM 2023.08.00) | 11 | 4.16.0 | 2.4.0 | 2.6.0 |
Expand Down

0 comments on commit 6b6618f

Please sign in to comment.