Skip to content

Commit

Permalink
Preapre for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Nov 26, 2024
1 parent 294948c commit 44e4de9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file:

```gradle
dependencies {
implementation("com.github.skydoves:landscapist-glide:2.4.3")
implementation("com.github.skydoves:landscapist-glide:2.4.4")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ object Configuration {
const val minSdk24 = 24
const val majorVersion = 2
const val minorVersion = 4
const val patchVersion = 3
const val patchVersion = 4
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 102
const val versionCode = 103
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.4.3"
implementation "com.github.skydoves:landscapist-glide:2.4.4"
}
```

=== "KTS"

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

Expand Down
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.4.4 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.4 | 3.3.0 |
| 2.4.3 | 1.7.5 (BOM 2024.11.00) | 11 | 4.16.0 | 3.0.3 | 3.3.0 |
| 2.4.2 | 1.7.5 (BOM 2024.10.01) | 11 | 4.16.0 | 3.0.0 | 3.3.0 |
| 2.4.1 | 1.7.3 (BOM 2024.09.03) | 11 | 4.16.0 | 2.7.0 | 3.3.0 |
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ androidxMacroBenchmark = "1.4.0-alpha05"
androidxProfileinstaller = "1.4.1"
androidxUiAutomator = "2.3.0"
kotlinxSerializationJson = "1.7.3"
jetbrains-compose = "1.8.0+check"
jetbrains-compose = "1.7.1"
glide = "4.16.0"
fresco = "3.5.0"
coil = "2.7.0"
Expand Down
2 changes: 0 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pluginManagement {
gradlePluginPortal()
mavenCentral()
maven(url = "https://plugins.gradle.org/m2/")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
Expand All @@ -15,7 +14,6 @@ dependencyResolutionManagement {
google()
mavenCentral()
maven(url = "https://plugins.gradle.org/m2/")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}

Expand Down

0 comments on commit 44e4de9

Please sign in to comment.