chore(poll): bump version to 0.1.11

This commit is contained in:
2026-07-22 03:42:11 +02:00
parent 52cd362343
commit 8fc030772b
5 changed files with 6 additions and 6 deletions

View File

@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
[project]
name = "govoplan-poll"
version = "0.1.10"
version = "0.1.11"
description = "GovOPlaN lightweight poll and availability decision module seed."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "GovOPlaN" }]
dependencies = [
"govoplan-core>=0.1.10",
"govoplan-core>=0.1.11",
]
[tool.setuptools.packages.find]

View File

@@ -2,4 +2,4 @@
__all__ = ["__version__"]
__version__ = "0.1.10"
__version__ = "0.1.11"

View File

@@ -20,7 +20,7 @@ from govoplan_poll.backend.db import models as poll_models # noqa: F401 - popul
MODULE_ID = "poll"
MODULE_NAME = "Poll"
MODULE_VERSION = "0.1.10"
MODULE_VERSION = "0.1.11"
READ_SCOPE = "poll:poll:read"
WRITE_SCOPE = "poll:poll:write"
ADMIN_SCOPE = "poll:poll:admin"

View File

@@ -1,4 +1,4 @@
"""v0.1.10 active identified Poll response uniqueness
"""v0.1.11 active identified Poll response uniqueness
Revision ID: 6e7f8a9b0c1d
Revises: 5d6e7f8a9b0c

View File

@@ -24,7 +24,7 @@ class PollManifestTests(unittest.TestCase):
self.assertIn("poll.signed_participation", {interface.name for interface in manifest.provides_interfaces})
self.assertIn("poll.governed_participation", {interface.name for interface in manifest.provides_interfaces})
self.assertIn(CAPABILITY_POLL_PARTICIPATION_GATEWAY, manifest.capability_factories)
self.assertEqual(manifest.version, "0.1.10")
self.assertEqual(manifest.version, "0.1.11")
self.assertIn("poll:response:write", {permission.scope for permission in manifest.permissions})