From 9ddc6f5e186c7670db417bafdb2f7bc8a5610c4f Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 7 Apr 2022 13:21:13 +0000 Subject: [PATCH] chore(release): bump version to v0.10.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ postgrest_py/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd97c86..c9adfaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.10.1 (2022-04-07) +### Fix +* Escape chars only when necessary ([#108](https://github.com/supabase-community/postgrest-py/issues/108)) ([`53f7d18`](https://github.com/supabase-community/postgrest-py/commit/53f7d18807aa292aa7326af573bd55828a3bb6e4)) + +**[See all commits in this version](https://github.com/supabase-community/postgrest-py/compare/v0.10.0...v0.10.1)** + ## v0.10.0 (2022-03-13) ### Feature * Add .contains and .contained_by operators to match JS client ([#100](https://github.com/supabase-community/postgrest-py/issues/100)) ([`7189e09`](https://github.com/supabase-community/postgrest-py/commit/7189e095bd792fcbc5b89e4f03ef7174e1dd30b7)) diff --git a/postgrest_py/__init__.py b/postgrest_py/__init__.py index afd1c06..cc3cd2f 100644 --- a/postgrest_py/__init__.py +++ b/postgrest_py/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.10.0" +__version__ = "0.10.1" from httpx import Timeout diff --git a/pyproject.toml b/pyproject.toml index 3797f33..42438cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "postgrest-py" -version = "0.10.0" +version = "0.10.1" description = "PostgREST client for Python. This library provides an ORM interface to PostgREST." authors = ["Lương Quang Mạnh "] homepage = "https://github.com/supabase/postgrest-py"