From 36258a9649a8d9863f25f2a1d70be1ff46c354cf Mon Sep 17 00:00:00 2001 From: Ranbir Singh Date: Mon, 22 Jun 2026 13:10:28 +0530 Subject: [PATCH] Release codegen 0.9.4 (stale-model cleanup + fetch timeouts) Codegen-only release: supabase-codegen + supabase-codegen-gradle to 0.9.4. The other SDK modules are unchanged and stay at 0.9.3 on Maven Central (codegen is standalone). --- CHANGELOG.md | 5 +++++ .../kotlin/io/github/androidpoet/supabase/Configuration.kt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 }