diff --git a/CHANGELOG.md b/CHANGELOG.md index 6941da1a..4905ffef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,24 +2,6 @@ -## v0.3.0 (2022-04-30) -### Feature -* Force version bump ([`62556c0`](https://github.com/supabase-community/storage-py/commit/62556c00a064c691df90be6f8c8a46cc1b772ba4)) -* Ignore unused imports in certain files ([`efebefe`](https://github.com/supabase-community/storage-py/commit/efebefed65a3adfa23ef4142600215bd1e6cff01)) -* Add context manager ([`ec61c29`](https://github.com/supabase-community/storage-py/commit/ec61c29f72a1dae1148dbd15ab5cdad61eac835c)) -* Add build_sync to makefile ([`b0a8665`](https://github.com/supabase-community/storage-py/commit/b0a86658678ce98a977cf67c07f07847003dcccf)) -* Add statusCode to exception ([`6923975`](https://github.com/supabase-community/storage-py/commit/692397503f4a475168b92a8d5d8cda7719d2bf65)) -* Add key to clients ([`838af7c`](https://github.com/supabase-community/storage-py/commit/838af7c0aded3c2e20df2ddd8e665da33d65106d)) - -### Fix -* **3.7 comp:** Import TypedDict from typing_extensions ([`dca5d6f`](https://github.com/supabase-community/storage-py/commit/dca5d6f716eb9624c4242a04e41e7b43f4e60ec6)) -* Add AsyncClient ([`9522298`](https://github.com/supabase-community/storage-py/commit/9522298b9cb63531802984844287e7da3c996a93)) -* Add storage to url ([`a33f9a3`](https://github.com/supabase-community/storage-py/commit/a33f9a398e43ef49d499b0685ff2557ca386c4fc)) -* Async fixes ([`061cb15`](https://github.com/supabase-community/storage-py/commit/061cb15c4800117b71c4f3c50e3e1b9bd5989e7c)) -* Typing.literal compatible w py3.7 ([`fcc21f1`](https://github.com/supabase-community/storage-py/commit/fcc21f16181a2127255edcf628e9f467a09874ca)) - -**[See all commits in this version](https://github.com/supabase-community/storage-py/compare/v0.2.0...v0.3.0)** - ## v0.2.0 (2022-04-11) ### What's Changed diff --git a/pyproject.toml b/pyproject.toml index edcd215b..8f7c5c40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ license = "MIT" name = "storage3" readme = "README.md" repository = "https://github.com/supabase-community/storage-py" -version = "0.3.0" +version = "0.2.0" [tool.poetry.dependencies] httpx = ">=0.19,<0.22" diff --git a/storage3/utils.py b/storage3/utils.py index 6c745f07..770cacc5 100644 --- a/storage3/utils.py +++ b/storage3/utils.py @@ -1,7 +1,7 @@ from httpx import AsyncClient as AsyncClient # noqa: F401 from httpx import Client as BaseClient -__version__ = "0.3.0" +__version__ = "0.2.0" class SyncClient(BaseClient):