Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 8a89dbb

Browse files
committed
chore(release): bump version to v0.3.0
Automatically generated by python-semantic-release
1 parent 5793136 commit 8a89dbb

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
<!--next-version-placeholder-->
44

5+
## v0.3.0 (2022-04-30)
6+
### Feature
7+
* Force version bump ([`62556c0`](https://github.com/supabase-community/storage-py/commit/62556c00a064c691df90be6f8c8a46cc1b772ba4))
8+
* Ignore unused imports in certain files ([`efebefe`](https://github.com/supabase-community/storage-py/commit/efebefed65a3adfa23ef4142600215bd1e6cff01))
9+
* Add context manager ([`ec61c29`](https://github.com/supabase-community/storage-py/commit/ec61c29f72a1dae1148dbd15ab5cdad61eac835c))
10+
* Add build_sync to makefile ([`b0a8665`](https://github.com/supabase-community/storage-py/commit/b0a86658678ce98a977cf67c07f07847003dcccf))
11+
* Add statusCode to exception ([`6923975`](https://github.com/supabase-community/storage-py/commit/692397503f4a475168b92a8d5d8cda7719d2bf65))
12+
* Add key to clients ([`838af7c`](https://github.com/supabase-community/storage-py/commit/838af7c0aded3c2e20df2ddd8e665da33d65106d))
13+
14+
### Fix
15+
* **3.7 comp:** Import TypedDict from typing_extensions ([`dca5d6f`](https://github.com/supabase-community/storage-py/commit/dca5d6f716eb9624c4242a04e41e7b43f4e60ec6))
16+
* Add AsyncClient ([`9522298`](https://github.com/supabase-community/storage-py/commit/9522298b9cb63531802984844287e7da3c996a93))
17+
* Add storage to url ([`a33f9a3`](https://github.com/supabase-community/storage-py/commit/a33f9a398e43ef49d499b0685ff2557ca386c4fc))
18+
* Async fixes ([`061cb15`](https://github.com/supabase-community/storage-py/commit/061cb15c4800117b71c4f3c50e3e1b9bd5989e7c))
19+
* Typing.literal compatible w py3.7 ([`fcc21f1`](https://github.com/supabase-community/storage-py/commit/fcc21f16181a2127255edcf628e9f467a09874ca))
20+
21+
**[See all commits in this version](https://github.com/supabase-community/storage-py/compare/v0.2.0...v0.3.0)**
22+
523
## v0.2.0 (2022-04-11)
624

725
### What's Changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "MIT"
1717
name = "storage3"
1818
readme = "README.md"
1919
repository = "https://github.com/supabase-community/storage-py"
20-
version = "0.2.0"
20+
version = "0.3.0"
2121

2222
[tool.poetry.dependencies]
2323
httpx = ">=0.19,<0.22"

storage3/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from httpx import AsyncClient as AsyncClient # noqa: F401
22
from httpx import Client as BaseClient
33

4-
__version__ = "0.2.0"
4+
__version__ = "0.3.0"
55

66

77
class SyncClient(BaseClient):

0 commit comments

Comments
 (0)