From b0bc3defe13dbe26b4aa2255aea45c5c5280fe19 Mon Sep 17 00:00:00 2001 From: Joel Lee Date: Wed, 29 Dec 2021 20:42:45 +0800 Subject: [PATCH] chore: update file versions --- CONTRIBUTING.md | 2 +- supabase/lib/MAINTAINERS.md => MAINTAINERS.md | 0 pyproject.toml | 8 ++++---- supabase/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename supabase/lib/MAINTAINERS.md => MAINTAINERS.md (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 69d69bfc..fcce9a9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ In the interest of fostering an open and welcoming environment, please review an ## Code and copy reviews All submissions, including submissions by project members, require review. We -use GitHub pull requests for this purpose. After filing a pull request, please tag any two of the [current maintainers](./supabase/lib/MAINTAINERS.md) to request a review. +use GitHub pull requests for this purpose. After filing a pull request, please tag any two of the [current maintainers](./MAINTAINERS.md) to request a review. ## Report an issue diff --git a/supabase/lib/MAINTAINERS.md b/MAINTAINERS.md similarity index 100% rename from supabase/lib/MAINTAINERS.md rename to MAINTAINERS.md diff --git a/pyproject.toml b/pyproject.toml index bed475a0..3054925e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "supabase" -version = "0.0.3" +version = "0.1.0" description = "Supabase client for Python." -authors = ["Joel Lee ", "Leon Fedden "] +authors = ["Joel Lee ", "Leon Fedden ", "Daniel Reinón García ", "Leynier Gutiérrez González ", "Anand"] homepage = "https://github.com/supabase-community/supabase-py" repository = "https://github.com/supabase-community/supabase-py" documentation = "https://github.com/supabase-community/supabase-py" @@ -16,9 +16,9 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.7" -postgrest-py = {git = "https://github.com/supabase-community/postgrest-py.git", rev = "3934fb2bd7c755962fa2fe490419d3e967e3555a"} +postgrest-py = "^0.6.0" realtime-py = "^0.1.2" -gotrue = {git = "https://github.com/supabase-community/gotrue-py.git", rev = "9ba3192dbdccd2f02a4819b52dd6cf51095af7e7"} +gotrue = "^0.3.0" httpx = ">=0.19,<0.22" [tool.poetry.dev-dependencies] diff --git a/supabase/__init__.py b/supabase/__init__.py index 6a3ad8e8..0ae2bf3d 100644 --- a/supabase/__init__.py +++ b/supabase/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.3" +__version__ = "0.1.0" from supabase import client, lib from supabase.client import Client, create_client