Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file:

```gradle
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.10.0")
implementation("com.github.skydoves:landscapist-glide:2.11.0")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ object Configuration {
const val minSdk = 21
const val minSdk24 = 24
const val majorVersion = 2
const val minorVersion = 10
const val minorVersion = 11
const val patchVersion = 0
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 130
const val versionCode = 131
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.10.0"
implementation "com.github.skydoves:landscapist-glide:2.11.0"
}
```

=== "KTS"

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

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.11.0 | 1.11.3 (BOM 2026.06.00) | 17 | 5.0.7 | 2.7.0 or 3.5.0 | 3.7.0 |
| 2.10.0 | 1.11.3 (BOM 2026.06.00) | 17 | 5.0.7 | 2.7.0 or 3.5.0 | 3.7.0 |
| 2.9.8 | 1.11.0 (BOM 2026.01.00) | 17 | 5.0.5 | 2.7.0 or 3.3.0 | 3.6.0 |
| 2.9.7 | 1.11.0 (BOM 2026.01.00) | 17 | 5.0.5 | 2.7.0 or 3.3.0 | 3.6.0 |
Expand Down
Loading