diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7e08ec6..ee2bfff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ec9d7..1d95ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## [0.9.3](https://github.com/supabase/functions-py/compare/v0.9.2...v0.9.3) (2025-01-29) + + +### Bug Fixes + +* body types other than JSON are improperly handled when invoking a function ([#186](https://github.com/supabase/functions-py/issues/186)) ([d1ba63a](https://github.com/supabase/functions-py/commit/d1ba63a87336e475c6a765c61d1a259a2770930f)) + ## [0.9.2](https://github.com/supabase/functions-py/compare/v0.9.1...v0.9.2) (2025-01-17) diff --git a/pyproject.toml b/pyproject.toml index 4a8cc9c..aa79932 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase_functions" -version = "0.9.2" # {x-release-please-version} +version = "0.9.3" # {x-release-please-version} description = "Library for Supabase Functions" authors = [ "Joel Lee ", diff --git a/supabase_functions/version.py b/supabase_functions/version.py index 578d780..be3f964 100644 --- a/supabase_functions/version.py +++ b/supabase_functions/version.py @@ -1 +1 @@ -__version__ = "0.9.2" # {x-release-please-version} +__version__ = "0.9.3" # {x-release-please-version}