diff --git a/CHANGELOG.md b/CHANGELOG.md index 4deede9a..4b0ef239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ Changelog **Unreleased** -------------- +0.29.0 +------ + +_2024-11-29_ + +- **New**: Add option to disable auto-application of the Moshi dependency in the moshi-ir Gradle plugin. `moshi { applyMoshiDependency.set(false) }`. +- Update to Kotlin `2.1.0`. Note that this release requires Kotlin `2.1.0` or later for moshi-ir due to changes in the IR API. It may work on older releases, but it's untested. +- Update KotlinPoet to `2.0.0`. +- Update Guava to `33.3.1-jre`. +- Update kotlinx-collections-immutable to `0.3.8`. +- Build against KSP `2.1.0-1.0.29`. +- Build against Gradle `8.11.1`. + +Special thanks to [@plnice](https://github.com/plnice) for contributing to this release! + 0.28.0 ------ diff --git a/gradle.properties b/gradle.properties index a321af1b..cc73dfa5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 GROUP=dev.zacsweers.moshix -VERSION_NAME=0.29.0 +VERSION_NAME=0.30.0-SNAPSHOT POM_DESCRIPTION=Moshi Extensions POM_URL=https://github.com/ZacSweers/MoshiX POM_SCM_URL=https://github.com/ZacSweers/MoshiX diff --git a/moshi-ir/moshi-gradle-plugin/gradle.properties b/moshi-ir/moshi-gradle-plugin/gradle.properties index 94c2d779..56da125c 100644 --- a/moshi-ir/moshi-gradle-plugin/gradle.properties +++ b/moshi-ir/moshi-gradle-plugin/gradle.properties @@ -10,7 +10,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true GROUP=dev.zacsweers.moshix -VERSION_NAME=0.29.0 +VERSION_NAME=0.30.0-SNAPSHOT POM_DESCRIPTION=A Kotlin compiler plugin that generates Moshi JsonAdapter classes. POM_URL=https://github.com/ZacSweers/MoshiX/ POM_SCM_URL=https://github.com/ZacSweers/MoshiX/