From 0faa8c3f37cb1f360f65dcef075479c297029844 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 15 Jan 2024 16:46:25 +0000 Subject: [PATCH] chore(release): bump version to v0.15.0 --- CHANGELOG.md | 16 ++++++++++++++++ postgrest/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c43e42c..59747a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,26 @@ +## v0.15.0 (2024-01-15) + +### Chore + +* chore(deps-dev): bump pytest-asyncio from 0.18.3 to 0.23.3 (#344) + +Signed-off-by: dependabot[bot] <support@github.com> +Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ([`e9f49a5`](https://github.com/supabase-community/postgrest-py/commit/e9f49a57b13c7f8f53ca2a5fc2d41377e980959b)) + +### Feature + +* feat: add like_any_of, like_all_of, ilike_any_of and ilike_all_of filters (#358) ([`d4e3f57`](https://github.com/supabase-community/postgrest-py/commit/d4e3f57aafd75138272b558f4ce507b2bef70e37)) + + ## v0.14.0 (2024-01-15) ### Chore +* chore(release): bump version to v0.14.0 ([`9f8a2a5`](https://github.com/supabase-community/postgrest-py/commit/9f8a2a54319795523efe5d41f5dcd327ba465a69)) + * chore: add alias for range methods (#350) ([`83ca3cd`](https://github.com/supabase-community/postgrest-py/commit/83ca3cd0a791513ed4c1fe45d3ed125a3c3d96e3)) ### Feature diff --git a/postgrest/__init__.py b/postgrest/__init__.py index 318dd9e..f3042da 100644 --- a/postgrest/__init__.py +++ b/postgrest/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.14.0" +__version__ = "0.15.0" from httpx import Timeout diff --git a/pyproject.toml b/pyproject.toml index 2b5079f..4684bea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postgrest" -version = "0.14.0" +version = "0.15.0" 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-community/postgrest-py"