Skip to content

Commit

Permalink
Prepare for release 2.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Sep 22, 2023
1 parent 74ad508 commit aa6e663
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 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.9-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.2.10-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.8"
implementation "com.github.skydoves:landscapist-glide:2.2.9"
}
```

Expand Down Expand Up @@ -302,7 +302,7 @@ dependencies {
implementation "com.github.skydoves:landscapist-fresco:$version"
}
```
> **Note**: `Landscapist-Fresco` includes version `2.6.0` of Fresco. So please make sure your project is using the same Fresco version or exclude the Fresco dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases).
> **Note**: `Landscapist-Fresco` includes version `3.1.0` of Fresco. So please make sure your project is using the same Fresco version or exclude the Fresco dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases).
### Setup
To get started, you should set up `Fresco` with [ImagePipelineConfig](https://frescolib.org/docs/configure-image-pipeline.html) in your `Application` class. Generally, it's recommended initializing with `OkHttpImagePipelineConfigFactory`. Also, you can customize caching, networking, and thread pool strategies with your own `ImagePipelineConfig`. For more details, you can check out [Using Other Network Layers](https://frescolib.org/docs/using-other-network-layers.html#using-okhttp).
Expand Down
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.8"
implementation "com.github.skydoves:landscapist-glide:2.2.9"
}
```

=== "KTS"

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

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

=== "KTS"

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

0 comments on commit aa6e663

Please sign in to comment.