Skip to content

Commit

Permalink
chore(deps): update dependency gradle to v8.7 (#744)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency gradle to v8.7

* update tested versions

* ktlint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gabriel Ittner <gabriel.ittner@gmail.com>
  • Loading branch information
renovate[bot] and gabrielittner committed Mar 28, 2024
1 parent 521bc03 commit 988b6be
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 10 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Change Log

## 0.29.0 **UNRELEASED**


#### Minimum supported versions
- JDK 11
- Gradle 8.1
- Android Gradle Plugin 8.0.0
- Kotlin Gradle Plugin 1.9.20

#### Compatibility tested up to
- JDK 21
- Gradle 8.7
- Android Gradle Plugin 8.3.1
- Android Gradle Plugin 8.4.0-beta02
- Android Gradle Plugin 8.5.0-alpha02
- Kotlin Gradle Plugin 1.9.23
- Kotlin Gradle Plugin 2.0.0-Beta5

#### Configuration cache status

Configuration cache is generally supported, except for:
- Publishing releases to Maven Central (snapshots are fine), blocked by [Gradle issue #22779](https://github.com/gradle/gradle/issues/22779).
- Dokka does not support configuration cache


## 0.28.0 *(2024-03-12)*

- Added support for publishing through the new [Central Portal](https://central.sonatype.com). To use
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ enum class AgpVersion(

// beta channel
AGP_8_4(
value = "8.4.0-beta01",
value = "8.4.0-beta02",
minGradleVersion = GradleVersion.GRADLE_8_6,
),

// canary channel
AGP_8_5(
value = "8.5.0-alpha01",
value = "8.5.0-alpha02",
minGradleVersion = GradleVersion.GRADLE_8_6,
),
}
Expand Down Expand Up @@ -76,19 +76,15 @@ enum class GradleVersion(
),

// stable
GRADLE_8_6(
value = "8.6",
),

// rc
GRADLE_8_7(
value = "8.7-rc-4",
value = "8.7",
),
;

companion object {
// aliases for the skipped version to be able to reference the correct one in AgpVersion
val GRADLE_8_4 = GRADLE_8_6
val GRADLE_8_4 = GRADLE_8_7
val GRADLE_8_6 = GRADLE_8_7
}
}

Expand Down

0 comments on commit 988b6be

Please sign in to comment.