Skip to content

Commit

Permalink
Preapre for release 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Oct 13, 2024
1 parent 816989b commit 975c752
Show file tree
Hide file tree
Showing 4 changed files with 7 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.0")
implementation("com.github.skydoves:landscapist-glide:2.4.1")
}
```

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 = 0
const val patchVersion = 1
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 99
const val versionCode = 100
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.0"
implementation "com.github.skydoves:landscapist-glide:2.4.1"
}
```

=== "KTS"

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

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

| Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco |
|-------------|------------------------|------------|--------|-------|--------|
| 2.4.1 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 |
| 2.4.0 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 |
| 2.3.2 | 1.6.2 (BOM 2024.02.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
| 2.3.1 | 1.6.1 (BOM 2024.02.00) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
| 2.3.0 | 1.6.0 (BOM 2024.01.00) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
Expand Down

0 comments on commit 975c752

Please sign in to comment.