Skip to content

Commit 8177ab5

Browse files
bump: version 0.1.1 → 1.0.0
1 parent 01e3e81 commit 8177ab5

File tree

3 files changed

+61
-3
lines changed

3 files changed

+61
-3
lines changed

CHANGELOG.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
## v1.0.0 (2022-01-02)
2+
3+
### Fix
4+
5+
- set correct main branch in ci.yml
6+
- set correct main branch in ci.yml
7+
- set correct main branch in ci.yml
8+
- update gotrue version and modify client options class
9+
- update gotrue version and modify client options class
10+
- remove setup.py
11+
- ci.yml max parallel config
12+
- github action max parallel in one
13+
- export envs and fix tests
14+
- error in Makefile
15+
- remove deadweight test
16+
- ensure python37 compat
17+
- default value for `name` in create_bucket
18+
19+
### Refactor
20+
21+
- realtime_py -> realtime
22+
23+
### Feat
24+
25+
- use directly sync postgrest client and remove unused code
26+
- use directly sync postgrest client and remove unused code
27+
- unify http client to be httpx
28+
- unify http client to be httpx
29+
- add header to query builder
30+
- upload files include mime type
31+
- add mime type to uploaded files
32+
- create custom StorageException
33+
34+
## v0.0.3 (2021-10-13)
35+
36+
### Feat
37+
38+
- add async support to storage buckets API
39+
- add docs for query_builder and storage_bucket
40+
- add upload
41+
- add download function
42+
- Add more functions to storage file api
43+
- add create_signed_url
44+
45+
### Fix
46+
47+
- missing json bodies in patch and put requests
48+
- missing json bodies in patch and put requests
49+
- get create_signed_url working
50+
- resolve merge conflicts
51+
- resolve merge conflicts
52+
53+
### Refactor
54+
55+
- update test client to use fixture
56+
- update test client
57+
58+
## v0.0.2 (2021-04-05)

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "supabase"
3-
version = "0.1.1"
3+
version = "1.0.0"
44
description = "Supabase client for Python."
55
authors = ["Joel Lee <[email protected]>", "Leon Fedden <[email protected]>", "Daniel Reinón García <[email protected]>", "Leynier Gutiérrez González <[email protected]>", "Anand"]
66
homepage = "https://github.com/supabase-community/supabase-py"
@@ -32,7 +32,7 @@ commitizen = "^2.20.3"
3232

3333
[tool.commitizen]
3434
name = "cz_conventional_commits"
35-
version = "0.1.1"
35+
version = "1.0.0"
3636
version_files = [
3737
"supabase/__init__.py",
3838
"pyproject.toml:version"

supabase/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.1"
1+
__version__ = "1.0.0"
22

33
from supabase import client, lib
44
from supabase.client import Client, create_client

0 commit comments

Comments
 (0)