Skip to content

Commit

Permalink
prepare to release 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Aug 2, 2023
1 parent 06e793d commit 68b0aaf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.4-SNAPSHOT"
implementation "com.github.skydoves:landscapist-glide:2.2.6-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.4"
implementation "com.github.skydoves:landscapist-glide:2.2.5"
}
```

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 = 4
const val patchVersion = 5
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 79
const val versionCode = 80
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.4"
implementation "com.github.skydoves:landscapist-glide:2.2.5"
}
```

=== "KTS"

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

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

=== "KTS"

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

0 comments on commit 68b0aaf

Please sign in to comment.