Skip to content

Commit

Permalink
bump: version 0.1.1 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 2, 2022
1 parent 01e3e81 commit 8177ab5
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 3 deletions.
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
## v1.0.0 (2022-01-02)

### Fix

- set correct main branch in ci.yml
- set correct main branch in ci.yml
- set correct main branch in ci.yml
- update gotrue version and modify client options class
- update gotrue version and modify client options class
- remove setup.py
- ci.yml max parallel config
- github action max parallel in one
- export envs and fix tests
- error in Makefile
- remove deadweight test
- ensure python37 compat
- default value for `name` in create_bucket

### Refactor

- realtime_py -> realtime

### Feat

- use directly sync postgrest client and remove unused code
- use directly sync postgrest client and remove unused code
- unify http client to be httpx
- unify http client to be httpx
- add header to query builder
- upload files include mime type
- add mime type to uploaded files
- create custom StorageException

## v0.0.3 (2021-10-13)

### Feat

- add async support to storage buckets API
- add docs for query_builder and storage_bucket
- add upload
- add download function
- Add more functions to storage file api
- add create_signed_url

### Fix

- missing json bodies in patch and put requests
- missing json bodies in patch and put requests
- get create_signed_url working
- resolve merge conflicts
- resolve merge conflicts

### Refactor

- update test client to use fixture
- update test client

## v0.0.2 (2021-04-05)
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "supabase"
version = "0.1.1"
version = "1.0.0"
description = "Supabase client for Python."
authors = ["Joel Lee <[email protected]>", "Leon Fedden <[email protected]>", "Daniel Reinón García <[email protected]>", "Leynier Gutiérrez González <[email protected]>", "Anand"]
homepage = "https://github.com/supabase-community/supabase-py"
Expand Down Expand Up @@ -32,7 +32,7 @@ commitizen = "^2.20.3"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.1"
version = "1.0.0"
version_files = [
"supabase/__init__.py",
"pyproject.toml:version"
Expand Down
2 changes: 1 addition & 1 deletion supabase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.1"
__version__ = "1.0.0"

from supabase import client, lib
from supabase.client import Client, create_client
Expand Down

0 comments on commit 8177ab5

Please sign in to comment.