diff --git a/pyproject.toml b/pyproject.toml index fc3779f..f0ed53a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-voting" -version = "0.1.17" +version = "0.1.18" description = "Governed voting, ballot assurance, tally, and certification for GovOPlaN." readme = "README.md" requires-python = ">=3.12" authors = [{ name = "GovOPlaN" }] -dependencies = ["govoplan-core>=0.1.17", "govoplan-access>=0.1.17"] +dependencies = ["govoplan-core>=0.1.18", "govoplan-access>=0.1.18"] [tool.setuptools.packages.find] where = ["src"] diff --git a/src/govoplan_voting/__init__.py b/src/govoplan_voting/__init__.py index 2f67a05..65340f9 100644 --- a/src/govoplan_voting/__init__.py +++ b/src/govoplan_voting/__init__.py @@ -1,3 +1,3 @@ """GovOPlaN Voting module.""" -__version__ = "0.1.17" +__version__ = "0.1.18" diff --git a/src/govoplan_voting/backend/manifest.py b/src/govoplan_voting/backend/manifest.py index d30dfbc..e62bdbf 100644 --- a/src/govoplan_voting/backend/manifest.py +++ b/src/govoplan_voting/backend/manifest.py @@ -46,7 +46,7 @@ from govoplan_voting.backend.local_confidential_provider import ( MODULE_ID = "voting" MODULE_NAME = "Voting" -MODULE_VERSION = "0.1.17" +MODULE_VERSION = "0.1.18" READ_SCOPE = "voting:ballot:read" MANAGE_SCOPE = "voting:ballot:manage" CAST_SCOPE = "voting:ballot:cast" diff --git a/webui/package.json b/webui/package.json index cba822b..71c4c64 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/voting-webui", - "version": "0.1.17", + "version": "0.1.18", "private": true, "type": "module", "main": "src/index.ts", @@ -14,7 +14,7 @@ "./styles/voting.css": "./src/styles/voting.css" }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.17", + "@govoplan/core-webui": "^0.1.18", "lucide-react": "^1.23.0", "react": ">=19.2.7 <20", "react-dom": ">=19.2.7 <20"