Skip to content

Commit

Permalink
Prepare for release 2.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Nov 8, 2023
1 parent d0c5f3d commit c86cad1
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.2.11-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.2.13-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.2.11"
implementation "com.github.skydoves:landscapist-glide:2.2.12"
}
```

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 = 11
const val patchVersion = 12
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 86
const val versionCode = 87
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.11"
implementation "com.github.skydoves:landscapist-glide:2.2.12"
}
```

=== "KTS"

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

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.2.11-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.2.13-SNAPSHOT"
}
```

=== "KTS"

```kotlin
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.2.11-SNAPSHOT")
implementation("com.github.skydoves:landscapist-glide:2.2.13-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.2.12 | 1.5.4 (BOM 2023.10.01) | 11 | 4.16.0 | 2.5.0 | 3.1.3 |
| 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 |
Expand Down

0 comments on commit c86cad1

Please sign in to comment.