Skip to content

Commit

Permalink
Prepare for release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Feb 5, 2024
1 parent 778f494 commit 9df6add
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 17 deletions.
10 changes: 6 additions & 4 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.14-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.3.1-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.13"
implementation "com.github.skydoves:landscapist-glide:2.3.0"
}
```

Expand Down Expand Up @@ -630,8 +630,10 @@ GlideImage( // CoilImage, FrescoImage
component = rememberImageComponent {
// shows a shimmering effect when loading an image.
+ShimmerPlugin(
baseColor = background800,
highlightColor = shimmerHighLight
Shimmer.Resonate(
baseColor = Color.White,
highlightColor = Color.LightGray,
),
)
},
// shows an error text message when request failed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ object Configuration {
const val minSdk = 21
const val minSdk24 = 24
const val majorVersion = 2
const val minorVersion = 2
const val patchVersion = 14
const val minorVersion = 3
const val patchVersion = 0
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 89
const val versionCode = 90
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.13"
implementation "com.github.skydoves:landscapist-glide:2.3.0"
}
```

=== "KTS"

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

Expand Down
18 changes: 12 additions & 6 deletions docs/placeholder.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ You can implement a shimmering effect while loading an image by using the `Shimm
component = rememberImageComponent {
// displays a shimmering effect when loading an image.
+ShimmerPlugin(
baseColor = background800,
highlightColor = shimmerHighLight
Shimmer.Resonate(
baseColor = Color.White,
highlightColor = Color.LightGray,
)
)
},
..
Expand All @@ -93,8 +95,10 @@ You can implement a shimmering effect while loading an image by using the `Shimm
component = rememberImageComponent {
// displays a shimmering effect when loading an image.
+ShimmerPlugin(
baseColor = background800,
highlightColor = shimmerHighLight
Shimmer.Resonate(
baseColor = Color.White,
highlightColor = Color.LightGray,
)
)
},
..
Expand All @@ -108,8 +112,10 @@ You can implement a shimmering effect while loading an image by using the `Shimm
component = rememberImageComponent {
// displays a shimmering effect when loading an image.
+ShimmerPlugin(
baseColor = background800,
highlightColor = shimmerHighLight
Shimmer.Resonate(
baseColor = Color.White,
highlightColor = Color.LightGray,
)
)
},
..
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.14-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.3.1-SNAPSHOT"
}
```

=== "KTS"

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

0 comments on commit 9df6add

Please sign in to comment.