Skip to content

Commit b1d228c

Browse files
chore: release main (#1224)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Leonardo Santiago <[email protected]>
1 parent 3f75daf commit b1d228c

File tree

20 files changed

+96
-24
lines changed

20 files changed

+96
-24
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"src/supabase": "2.19.0",
3-
"src/realtime": "2.19.0",
4-
"src/functions": "2.19.0",
5-
"src/storage": "2.19.0",
6-
"src/postgrest": "2.19.0",
7-
"src/auth": "2.19.0"
2+
"src/supabase": "2.20.0",
3+
"src/realtime": "2.20.0",
4+
"src/functions": "2.20.0",
5+
"src/storage": "2.20.0",
6+
"src/postgrest": "2.20.0",
7+
"src/auth": "2.20.0"
88
}

src/auth/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# CHANGELOG
22

3+
## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22)
4+
5+
6+
### Features
7+
8+
* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656))
9+
10+
* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273))
11+
12+
* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3))
13+
14+
15+
316
## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16)
417

518
### Features

src/auth/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "supabase_auth"
3-
version = "2.19.0" # {x-release-please-version}
3+
version = "2.20.0" # {x-release-please-version}
44
description = "Python Client Library for Supabase Auth"
55
authors = [
66
{name = "Joel Lee", email = "[email protected]" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.19.0" # {x-release-please-version}
1+
__version__ = "2.20.0" # {x-release-please-version}

src/functions/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# CHANGELOG
22

3+
## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22)
4+
5+
### Features
6+
7+
* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656))
8+
9+
* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273))
10+
11+
* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3))
12+
13+
14+
### Documentation
15+
16+
* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656))
17+
318
## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16)
419

520
### Features

src/functions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "supabase_functions"
3-
version = "2.19.0" # {x-release-please-version}
3+
version = "2.20.0" # {x-release-please-version}
44
description = "Library for Supabase Functions"
55
authors = [
66
{ name = "Joel Lee", email = "[email protected]" },
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.19.0" # {x-release-please-version}
1+
__version__ = "2.20.0" # {x-release-please-version}

src/postgrest/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22)
4+
5+
6+
### Features
7+
8+
* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656))
9+
10+
* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273))
11+
12+
* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3))
13+
14+
315
## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16)
416

517
### Features

src/postgrest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "postgrest"
3-
version = "2.19.0" # {x-release-please-version}
3+
version = "2.20.0" # {x-release-please-version}
44
description = "PostgREST client for Python. This library provides an ORM interface to PostgREST."
55
authors = [
66
{ name = "Lương Quang Mạnh", email = "[email protected]"},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.19.0" # {x-release-please-version}
1+
__version__ = "2.20.0" # {x-release-please-version}

0 commit comments

Comments
 (0)