From 4761613e44e891089aaa1aa5bdb3a2e5c2d06fb3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 22:38:12 +0000 Subject: [PATCH] chore(main): release 0.17.0 (#510) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ postgrest/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1cb98eb..7b51ca0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.11" + ".": "0.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 73cbe08..fdb4c0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## [0.17.0](https://github.com/supabase/postgrest-py/compare/v0.16.11...v0.17.0) (2024-09-28) + + +### Features + +* Proxy support ([#508](https://github.com/supabase/postgrest-py/issues/508)) ([8629f6f](https://github.com/supabase/postgrest-py/commit/8629f6f8d194d54efb8944f9fe5811ee8190cbf1)) +* select all columns by default ([#509](https://github.com/supabase/postgrest-py/issues/509)) ([ffb304f](https://github.com/supabase/postgrest-py/commit/ffb304fbc102ed9efa431e5ccfd8027d4d5c3f54)) + + +### Bug Fixes + +* **deps:** bump pydantic from 2.8.2 to 2.9.2 ([#506](https://github.com/supabase/postgrest-py/issues/506)) ([ccf2885](https://github.com/supabase/postgrest-py/commit/ccf28850fe0a0888accc09d2dedf42f7d9242e2e)) + ## [0.16.11](https://github.com/supabase/postgrest-py/compare/v0.16.10...v0.16.11) (2024-08-22) diff --git a/postgrest/version.py b/postgrest/version.py index 0c27493..af61f5c 100644 --- a/postgrest/version.py +++ b/postgrest/version.py @@ -1 +1 @@ -__version__ = "0.16.11" # {x-release-please-version} +__version__ = "0.17.0" # {x-release-please-version} diff --git a/pyproject.toml b/pyproject.toml index 02af702..bedc077 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postgrest" -version = "0.16.11" # {x-release-please-version} +version = "0.17.0" # {x-release-please-version} description = "PostgREST client for Python. This library provides an ORM interface to PostgREST." authors = ["Lương Quang Mạnh ", "Joel Lee ", "Anand", "Oliver Rice", "Andrew Smith "] homepage = "https://github.com/supabase/postgrest-py"