diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009..78e7f27 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 727294e..1d0c355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## [0.11.0](https://github.com/supabase/storage-py/compare/v0.10.0...v0.11.0) (2024-12-27) + + +### Features + +* Implement info and exists file API methods ([#318](https://github.com/supabase/storage-py/issues/318)) ([0100ff1](https://github.com/supabase/storage-py/commit/0100ff10af7fc86cb6286269a7b91195e0393d3a)) + + +### Bug Fixes + +* file name in signed URLs is not URI-encoded ([#324](https://github.com/supabase/storage-py/issues/324)) ([c58fbb0](https://github.com/supabase/storage-py/commit/c58fbb0afcff087616d5913c3953e849bb2f6885)) +* incorrect upload return type ([#327](https://github.com/supabase/storage-py/issues/327)) ([eb8034f](https://github.com/supabase/storage-py/commit/eb8034f4f2ae4fdb2b12b3dc048d2cf4080fc193)) +* upload doesn't close file handle ([#323](https://github.com/supabase/storage-py/issues/323)) ([02ae7fc](https://github.com/supabase/storage-py/commit/02ae7fca681d3f73211c3a500145ed395a159ec3)) + ## [0.10.0](https://github.com/supabase/storage-py/compare/v0.9.0...v0.10.0) (2024-11-22) diff --git a/pyproject.toml b/pyproject.toml index a5c2759..06e14aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ license = "MIT" name = "storage3" readme = "README.md" repository = "https://github.com/supabase/storage-py" -version = "0.10.0" # {x-release-please-version} +version = "0.11.0" # {x-release-please-version} [tool.poetry.dependencies] diff --git a/storage3/version.py b/storage3/version.py index bdb9c94..f8fecfd 100644 --- a/storage3/version.py +++ b/storage3/version.py @@ -1 +1 @@ -__version__ = "0.10.0" # {x-release-please-version} +__version__ = "0.11.0" # {x-release-please-version}