From 79d19795007b328e08dff4e71d80b50a1edb67f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 08:55:25 +0000 Subject: [PATCH] chore(main): release 0.17.2 (#515) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ postgrest/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b05f59a..89dfe57 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.17.1" + ".": "0.17.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e97113..db34982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## [0.17.2](https://github.com/supabase/postgrest-py/compare/v0.17.1...v0.17.2) (2024-10-18) + + +### Bug Fixes + +* bump minimal version of Python to 3.9 ([#522](https://github.com/supabase/postgrest-py/issues/522)) ([11da550](https://github.com/supabase/postgrest-py/commit/11da55084fdd22d0e081aee5867b946337783d73)) +* **deps:** install strenum package only with Python 3.10 and older ([#519](https://github.com/supabase/postgrest-py/issues/519)) ([9dfefd0](https://github.com/supabase/postgrest-py/commit/9dfefd0bd2e31775e4ff423654797cf40b1940fe)) +* Types to use Option[T] ([#514](https://github.com/supabase/postgrest-py/issues/514)) ([645b677](https://github.com/supabase/postgrest-py/commit/645b677715b8ff338047240bf48dd19dd86b71b4)) + ## [0.17.1](https://github.com/supabase/postgrest-py/compare/v0.17.0...v0.17.1) (2024-10-02) diff --git a/postgrest/version.py b/postgrest/version.py index 637797d..a415618 100644 --- a/postgrest/version.py +++ b/postgrest/version.py @@ -1 +1 @@ -__version__ = "0.17.1" # {x-release-please-version} +__version__ = "0.17.2" # {x-release-please-version} diff --git a/pyproject.toml b/pyproject.toml index a48ccea..21977a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postgrest" -version = "0.17.1" # {x-release-please-version} +version = "0.17.2" # {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"