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

Commit 6c2b7d6

Browse files
author
github-actions
committed
0.7.0
Automatically generated by python-semantic-release
1 parent f42d176 commit 6c2b7d6

File tree

2 files changed

+83
-1
lines changed

2 files changed

+83
-1
lines changed

CHANGELOG.md

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

33

44

5+
## v0.7.0 (2023-11-22)
6+
7+
### Chore
8+
9+
* chore: update GitHub workflow for releases ([`72ad275`](https://github.com/supabase-community/storage-py/commit/72ad2752849621446fd1df7ebc0b85dc4d9cf4cd))
10+
11+
* chore: add sync version of the update function ([`18c14a4`](https://github.com/supabase-community/storage-py/commit/18c14a4e7888cd14d09b7cbbd2e8b02f9cef02f0))
12+
13+
* chore(deps-dev): bump pytest from 7.4.2 to 7.4.3
14+
15+
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.2 to 7.4.3.
16+
- [Release notes](https://github.com/pytest-dev/pytest/releases)
17+
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
18+
- [Commits](https://github.com/pytest-dev/pytest/compare/7.4.2...7.4.3)
19+
20+
---
21+
updated-dependencies:
22+
- dependency-name: pytest
23+
dependency-type: direct:development
24+
update-type: version-update:semver-patch
25+
...
26+
27+
Signed-off-by: dependabot[bot] <[email protected]> ([`87125bc`](https://github.com/supabase-community/storage-py/commit/87125bccaee9eeffd136af5ee8c442a4161b4761))
28+
29+
* chore(deps-dev): bump black from 23.9.1 to 23.10.0
30+
31+
Bumps [black](https://github.com/psf/black) from 23.9.1 to 23.10.0.
32+
- [Release notes](https://github.com/psf/black/releases)
33+
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
34+
- [Commits](https://github.com/psf/black/compare/23.9.1...23.10.0)
35+
36+
---
37+
updated-dependencies:
38+
- dependency-name: black
39+
dependency-type: direct:development
40+
update-type: version-update:semver-minor
41+
...
42+
43+
Signed-off-by: dependabot[bot] <[email protected]> ([`ac6f901`](https://github.com/supabase-community/storage-py/commit/ac6f9017d8cde34b930b0436af5f413fc589b12f))
44+
45+
* chore(deps-dev): bump urllib3 from 2.0.5 to 2.0.7
46+
47+
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.0.5 to 2.0.7.
48+
- [Release notes](https://github.com/urllib3/urllib3/releases)
49+
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
50+
- [Commits](https://github.com/urllib3/urllib3/compare/v2.0.5...2.0.7)
51+
52+
---
53+
updated-dependencies:
54+
- dependency-name: urllib3
55+
dependency-type: indirect
56+
...
57+
58+
Signed-off-by: dependabot[bot] <[email protected]> ([`79c9ca3`](https://github.com/supabase-community/storage-py/commit/79c9ca3b23e13e7f1d3788edc99d5939f59d0960))
59+
60+
### Feature
61+
62+
* feat: add update existing file function ([`da4d785`](https://github.com/supabase-community/storage-py/commit/da4d785028e86899f1efc23394883836b94cd0d3))
63+
64+
### Unknown
65+
66+
* Merge pull request #166 from supabase-community/chore/update-gh-workflow
67+
68+
chore: update GitHub workflow for releases ([`f42d176`](https://github.com/supabase-community/storage-py/commit/f42d1766d4a8649a995ae474185eb50d0572bf2c))
69+
70+
* Merge pull request #165 from supabase-community/silentworks/file_update
71+
72+
feat: add update existing file function ([`d8139e0`](https://github.com/supabase-community/storage-py/commit/d8139e0e36f5d083262e61809e74313969de7996))
73+
74+
* Merge pull request #158 from supabase-community/dependabot/pip/urllib3-2.0.7
75+
76+
chore(deps-dev): bump urllib3 from 2.0.5 to 2.0.7 ([`fc8cb5d`](https://github.com/supabase-community/storage-py/commit/fc8cb5d60511d3e795614ff17facebe22b6f93f2))
77+
78+
* Merge pull request #162 from supabase-community/dependabot/pip/main/pytest-7.4.3
79+
80+
chore(deps-dev): bump pytest from 7.4.2 to 7.4.3 ([`9b048cb`](https://github.com/supabase-community/storage-py/commit/9b048cbb913b725f326e1c3e8eaa4b9377b6f1d6))
81+
82+
* Merge pull request #159 from supabase-community/dependabot/pip/main/black-23.10.0
83+
84+
chore(deps-dev): bump black from 23.9.1 to 23.10.0 ([`0f332fa`](https://github.com/supabase-community/storage-py/commit/0f332fa714636f343deb390ec58a288563fc81d2))
85+
86+
587
## v0.6.1 (2023-10-02)
688

789
### Documentation

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ license = "MIT"
1818
name = "storage3"
1919
readme = "README.md"
2020
repository = "https://github.com/supabase-community/storage-py"
21-
version = "0.6.1"
21+
version = "0.7.0"
2222

2323
[tool.poetry.dependencies]
2424
httpx = ">=0.24,<0.26"

0 commit comments

Comments
 (0)