diff --git a/pyproject.toml b/pyproject.toml index b630b2b..e22ac23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-voting" -version = "0.1.14" +version = "0.1.15" 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.14", "govoplan-access>=0.1.8"] +dependencies = ["govoplan-core>=0.1.15", "govoplan-access>=0.1.15"] [tool.setuptools.packages.find] where = ["src"] diff --git a/src/govoplan_voting/__init__.py b/src/govoplan_voting/__init__.py index ab65d24..e502df1 100644 --- a/src/govoplan_voting/__init__.py +++ b/src/govoplan_voting/__init__.py @@ -1,3 +1,3 @@ """GovOPlaN Voting module.""" -__version__ = "0.1.14" +__version__ = "0.1.15" diff --git a/src/govoplan_voting/backend/manifest.py b/src/govoplan_voting/backend/manifest.py index ff520bc..241c985 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.14" +MODULE_VERSION = "0.1.15" 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 613706d..825d4db 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/voting-webui", - "version": "0.1.14", + "version": "0.1.15", "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.14", + "@govoplan/core-webui": "^0.1.15", "lucide-react": "^1.23.0", "react": ">=19.2.7 <20", "react-dom": ">=19.2.7 <20"