diff --git a/CHANGELOG.md b/CHANGELOG.md index 045d243..31c884c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.9.4 + +> Codegen-only release: `supabase-codegen` + `supabase-codegen-gradle` published at `0.9.4`. +> The other SDK modules are unchanged from `0.9.2`/`0.9.3`. + ### Fixed - **Codegen clears stale models on regeneration.** Before writing, the CLI and Gradle task now diff --git a/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt b/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt index 4e80cc9..1aabe66 100644 --- a/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/github/androidpoet/supabase/Configuration.kt @@ -2,7 +2,7 @@ package io.github.androidpoet.supabase object Configuration { const val GROUP = "io.github.androidpoet" - const val VERSION = "0.9.3" + const val VERSION = "0.9.4" const val COMPILE_SDK = 35 const val MIN_SDK = 21 }