Skip to content

Commit

Permalink
Prepare for 2.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Dec 29, 2024
1 parent afd3581 commit 08b7e17
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 @@ -70,7 +70,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file:

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ object Configuration {
const val minSdk24 = 24
const val majorVersion = 2
const val minorVersion = 4
const val patchVersion = 4
const val patchVersion = 5
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 103
const val versionCode = 104
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.4.4"
implementation "com.github.skydoves:landscapist-glide:2.4.5"
}
```

=== "KTS"

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

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.4.5 | 1.7.6 (BOM 2024.12.01) | 11 | 4.16.0 | 3.0.4 | 3.5.0 |
| 2.4.4 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.4 | 3.5.0 |
| 2.4.3 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.3 | 3.3.0 |
| 2.4.2 | 1.7.5 (BOM 2024.10.01) | 11 | 4.16.0 | 3.0.0 | 3.3.0 |
Expand Down

0 comments on commit 08b7e17

Please sign in to comment.