Skip to content

Commit

Permalink
Prepare for release 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Feb 12, 2024
1 parent 6d08456 commit 1aadd8d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ repositories {
Next, add the dependency below to your **module**'s `build.gradle` file:
```gradle
dependencies {
implementation "com.github.skydoves:landscapist-glide:2.3.1-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.3.2-SNAPSHOT"
}
```
</details>
Expand All @@ -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.3.0"
implementation "com.github.skydoves:landscapist-glide:2.3.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 = 3
const val patchVersion = 0
const val patchVersion = 1
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 90
const val versionCode = 91
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.3.0"
implementation "com.github.skydoves:landscapist-glide:2.3.1"
}
```

=== "KTS"

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

Expand Down
4 changes: 2 additions & 2 deletions docs/snapshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ Next, add the dependency below to your **module**'s `build.gradle` file:

```Groovy
dependencies {
implementation "com.github.skydoves:landscapist-glide:2.3.1-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.3.2-SNAPSHOT"
}
```

=== "KTS"

```kotlin
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.3.1-SNAPSHOT")
implementation("com.github.skydoves:landscapist-glide:2.3.2-SNAPSHOT")
}
```
3 changes: 2 additions & 1 deletion docs/version-map.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Version Map
\

The Landscapist utilizes varying Compose versions and JVM targets for each release. This map will assist you in ensuring compatibility and smooth integration with your project.


| Landscapist | Compose UI | Jvm Target | Glide | Coil | Fresco |
|-------------|------------------------|------------|--------|-------|--------|
| 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 |
| 2.2.13 | 1.5.4 (BOM 2023.10.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
| 2.2.12 | 1.5.4 (BOM 2023.10.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
Expand Down

0 comments on commit 1aadd8d

Please sign in to comment.