From c07e6e40f5bd474304dd3950d20a3c0561439868 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 17 Jan 2022 12:58:50 +0000 Subject: [PATCH] chore(release): bump version to v0.2.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- supabase/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..b1ddf2d2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + + + +## v0.2.1 (2022-01-17) +### Fix +* Use requests for upload ([#121](https://github.com/supabase-community/supabase-py/issues/121)) ([`ed99717`](https://github.com/supabase-community/supabase-py/commit/ed99717fdd611915b9a697db183a42795cf3e545)) + +**[See all commits in this version](https://github.com/supabase-community/supabase-py/compare/v0.2.0...v0.2.1)** diff --git a/pyproject.toml b/pyproject.toml index b70a8a26..6588b558 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "supabase" -version = "0.2.0" +version = "0.2.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 5ca6e719..181ad268 100644 --- a/supabase/__init__.py +++ b/supabase/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" from supabase import client, lib from supabase.client import Client, create_client