Skip to content

Commit

Permalink
Merge pull request #341 from skydoves/release/2.2.10
Browse files Browse the repository at this point in the history
Prepare for release 2.2.10
  • Loading branch information
skydoves authored Oct 2, 2023
2 parents 2a25041 + e9e9874 commit 7862d31
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 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.10-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.2.11-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.9"
implementation "com.github.skydoves:landscapist-glide:2.2.10"
}
```

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 = 9
const val patchVersion = 10
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 84
const val versionCode = 85
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.9"
implementation "com.github.skydoves:landscapist-glide:2.2.10"
}
```

=== "KTS"

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

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

=== "KTS"

```kotlin
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.2.10-SNAPSHOT")
implementation("com.github.skydoves:landscapist-glide:2.2.11-SNAPSHOT")
}
```
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.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 |
| 2.2.8 | 1.5.0 (BOM 2023.08.00) | 11 | 4.16.0 | 2.4.0 | 2.6.0 |
| 2.2.7 | 1.5.0 (BOM 2023.08.00) | 11 | 4.15.1 | 2.3.0 | 2.6.0 |
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 4 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down

0 comments on commit 7862d31

Please sign in to comment.