From 93d372c0b1d3fc580c5efc685b68b81efe1d017b Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 30 Sep 2024 16:05:26 -0400 Subject: [PATCH] Prepare version 0.15.0 --- CHANGELOG.md | 15 ++++++++++++++- .../redwood/buildsupport/RedwoodBuildPlugin.kt | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b0704613a..bfcf9a40b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,20 @@ # Change Log ## [Unreleased] -[Unreleased]: https://github.com/cashapp/redwood/compare/0.13.0...HEAD +[Unreleased]: https://github.com/cashapp/redwood/compare/0.15.0...HEAD + +New: +- Nothing yet! + +Changed: +- Nothing yet! + +Fixed: +- Nothing yet! + + +## [0.15.0] - 2024-09-30 +[0.15.0]: https://github.com/cashapp/redwood/releases/tag/0.15.0 New: - Default expressions can now be used directly in the schema rather than using the `@Default` annotation. The annotation has been deprecated, and will be removed in the next release. diff --git a/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt b/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt index 0e294876b7..bc6612f80c 100644 --- a/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt +++ b/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt @@ -75,7 +75,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile private const val REDWOOD_GROUP_ID = "app.cash.redwood" // HEY! If you change the major version update release.yaml doc folder. -private const val REDWOOD_VERSION = "0.15.0-SNAPSHOT" +private const val REDWOOD_VERSION = "0.15.0" private val isCiEnvironment = System.getenv("CI") == "true"