diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d3ca83a..3603b7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.4.0 (2022-02-04) +### Feature +* Update postgrest-py from 0.8.1 to 0.8.2 ([`1feab46`](https://github.com/supabase-community/supabase-py/commit/1feab46f2df64de014aa550952192366cc8055ef)) + +**[See all commits in this version](https://github.com/supabase-community/supabase-py/compare/v0.3.3...v0.4.0)** + ## v0.3.3 (2022-02-03) ### Fix * Increase sleep before listing ([`127ef98`](https://github.com/supabase-community/supabase-py/commit/127ef98d56eceef992b1ed9cfdc69b9701f3b92a)) diff --git a/pyproject.toml b/pyproject.toml index 41ea1cb5..ef74d0ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase" -version = "0.3.3" +version = "0.4.0" description = "Supabase client for Python." authors = ["Joel Lee ", "Leon Fedden ", "Daniel Reinón García ", "Leynier Gutiérrez González ", "Anand"] homepage = "https://github.com/supabase-community/supabase-py" diff --git a/supabase/__init__.py b/supabase/__init__.py index eedaec38..803b7793 100644 --- a/supabase/__init__.py +++ b/supabase/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.3" +__version__ = "0.4.0" from supabase import client, lib from supabase.client import Client, create_client