diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a7a4b7..7d3ca83a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.3.3 (2022-02-03) +### Fix +* Increase sleep before listing ([`127ef98`](https://github.com/supabase-community/supabase-py/commit/127ef98d56eceef992b1ed9cfdc69b9701f3b92a)) +* Sleep before listing buckets ([`566a355`](https://github.com/supabase-community/supabase-py/commit/566a35587983361f2bb2bc5c58f3b82b02d6ed0e)) + +**[See all commits in this version](https://github.com/supabase-community/supabase-py/compare/v0.3.2...v0.3.3)** + ## v0.3.2 (2022-01-22) ### Fix * Upgrade postgrest-py for fix order filter ([`b8840cd`](https://github.com/supabase-community/supabase-py/commit/b8840cdc07cd7d53767fe2c321761558aecd5bd4)) diff --git a/pyproject.toml b/pyproject.toml index 645aec53..41ea1cb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase" -version = "0.3.2" +version = "0.3.3" 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 1f7d945d..3d476841 100644 --- a/supabase/__init__.py +++ b/supabase/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.2" +__version__ = "0.3.3" from supabase import client, lib from supabase.client import Client, create_client