From 5b5fe0dcdfd81b1e91da47d49d6aecaad0505a3d Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Sat, 23 Mar 2024 12:56:43 +0000 Subject: [PATCH] fix: Update library name in pyproject file (#67) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1500d26..1037c46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "supafunc" +name = "supabase_functions" version = "0.4.0" description = "Library for Supabase Functions" authors = [ @@ -27,7 +27,7 @@ pytest-asyncio = ">=0.21.1,<0.24.0" respx = ">=0.20.2,<0.22.0" [tool.semantic_release] -version_variables = ["supafunc/utils.py:__version__"] +version_variables = ["supabase_functions/utils.py:__version__"] version_toml = ["pyproject.toml:tool.poetry.version"] major_on_zero = false commit_message = "chore(release): bump version to v{version}"