diff --git a/README.md b/README.md index 5780993e..5b34913e 100644 --- a/README.md +++ b/README.md @@ -306,9 +306,6 @@ Realtime changes are unfortunately still a WIP. Feel free to file PRs to [realti See [Supabase Docs](https://supabase.com/docs/guides/client-libraries) for full list of examples -## NOTE: RLS does not work out of the box right now -After you sign a user in, the user's access token is _not_ being used by the library for any of the API calls, and therefore RLS does not work right now. See [related issue and discussion](https://github.com/supabase-community/supabase-py/issues/185) - ## Python and Supabase Resources - [Python data loading with Supabase](https://supabase.com/blog/loading-data-supabase-python) diff --git a/pyproject.toml b/pyproject.toml index ba9e0450..1b91f6e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,12 +38,12 @@ python-dotenv = "^1.0.0" tests = 'poetry_scripts:run_tests' [tool.semantic_release] -version_variable = "supabase/__version__.py:__version__" +version_variables = ["supabase/__version__.py:__version__"] version_toml = ["pyproject.toml:tool.poetry.version"] major_on_zero = false -commit_subject = "chore(release): bump version to v{version}" +commit_message = "chore(release): bump version to v{version}" build_command = "curl -sSL https://install.python-poetry.org | python - --preview && export PATH=\"/github/home/.local/bin:$PATH\" && poetry install && poetry build" -upload_to_vcs = true +upload_to_vcs_release = true branch = "main" changelog_components = "semantic_release.changelog.changelog_headers,semantic_release.changelog.compare_url"