diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5e39b941..19ee807a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.18.0" + ".": "0.19.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 39966325..ada3a9af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## [0.19.0](https://github.com/supabase/postgrest-py/compare/v0.18.0...v0.19.0) (2024-11-22) + + +### Features + +* Check if token is a JWT ([#529](https://github.com/supabase/postgrest-py/issues/529)) ([ed892c4](https://github.com/supabase/postgrest-py/commit/ed892c45346b3f866df0fc0afb997f292c17cbf2)) + ## [0.18.0](https://github.com/supabase/postgrest-py/compare/v0.17.2...v0.18.0) (2024-10-31) diff --git a/postgrest/version.py b/postgrest/version.py index 400829a5..79fc086a 100644 --- a/postgrest/version.py +++ b/postgrest/version.py @@ -1 +1 @@ -__version__ = "0.18.0" # {x-release-please-version} +__version__ = "0.19.0" # {x-release-please-version} diff --git a/pyproject.toml b/pyproject.toml index 24473c82..b9a8109d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postgrest" -version = "0.18.0" # {x-release-please-version} +version = "0.19.0" # {x-release-please-version} description = "PostgREST client for Python. This library provides an ORM interface to PostgREST." authors = ["Lương Quang Mạnh ", "Joel Lee ", "Anand", "Oliver Rice", "Andrew Smith "] homepage = "https://github.com/supabase/postgrest-py"