Skip to content

Commit c6a03e2

Browse files
committedSep 28, 2023
fix: correct semantic release variable names
1 parent 19dba24 commit c6a03e2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed
 

‎README.md

-3
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,6 @@ Realtime changes are unfortunately still a WIP. Feel free to file PRs to [realti
306306

307307
See [Supabase Docs](https://supabase.com/docs/guides/client-libraries) for full list of examples
308308

309-
## NOTE: RLS does not work out of the box right now
310-
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)
311-
312309
## Python and Supabase Resources
313310

314311
- [Python data loading with Supabase](https://supabase.com/blog/loading-data-supabase-python)

‎pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ python-dotenv = "^1.0.0"
3838
tests = 'poetry_scripts:run_tests'
3939

4040
[tool.semantic_release]
41-
version_variable = "supabase/__version__.py:__version__"
41+
version_variables = ["supabase/__version__.py:__version__"]
4242
version_toml = ["pyproject.toml:tool.poetry.version"]
4343
major_on_zero = false
44-
commit_subject = "chore(release): bump version to v{version}"
44+
commit_message = "chore(release): bump version to v{version}"
4545
build_command = "curl -sSL https://install.python-poetry.org | python - --preview && export PATH=\"/github/home/.local/bin:$PATH\" && poetry install && poetry build"
46-
upload_to_vcs = true
46+
upload_to_vcs_release = true
4747
branch = "main"
4848
changelog_components = "semantic_release.changelog.changelog_headers,semantic_release.changelog.compare_url"
4949

0 commit comments

Comments
 (0)
Please sign in to comment.