From d0b297804483ddde8979f54fc8613d028afc890f Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 22 Jan 2022 00:31:53 +0000 Subject: [PATCH] chore(release): bump version to v0.3.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- supabase/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80618b3a..6f5e3d71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.3.1 (2022-01-22) +### Fix +* Use httpx in storage file upload ([#130](https://github.com/supabase-community/supabase-py/issues/130)) ([`086d925`](https://github.com/supabase-community/supabase-py/commit/086d92504f014079a125f5342c59d1d8bb7e795f)) + +**[See all commits in this version](https://github.com/supabase-community/supabase-py/compare/v0.3.0...v0.3.1)** + ## v0.3.0 (2022-01-17) ### Feature * Add manual action for publish on pypi and update postgrest and gotrue deps ([#124](https://github.com/supabase-community/supabase-py/issues/124)) ([`eca34fa`](https://github.com/supabase-community/supabase-py/commit/eca34fa222c8f7be7c30586f74cbe9fe9df3018f)) diff --git a/pyproject.toml b/pyproject.toml index a61eae81..b3f200e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase" -version = "0.3.0" +version = "0.3.1" 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 124bec70..4974261f 100644 --- a/supabase/__init__.py +++ b/supabase/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.0" +__version__ = "0.3.1" from supabase import client, lib from supabase.client import Client, create_client