diff --git a/raspi-setup/pyproject.toml b/raspi-setup/pyproject.toml index c38bf3de..50f19a23 100644 --- a/raspi-setup/pyproject.toml +++ b/raspi-setup/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hermes-raspi-setup" -version = "0.1.0-alpha.12" +version = "0.1.0-alpha.13" description = "" authors = ["Moritz Makowski "] readme = "README.md" diff --git a/sensor/config/config.template.json b/sensor/config/config.template.json index bb360cd8..ac07dc25 100644 --- a/sensor/config/config.template.json +++ b/sensor/config/config.template.json @@ -1,5 +1,5 @@ { - "version": "0.1.0-alpha.12", + "version": "0.1.0-alpha.13", "revision": 0, "verbose_logging": false, "active_components": { diff --git a/sensor/pyproject.toml b/sensor/pyproject.toml index 1a8541ea..e629e437 100644 --- a/sensor/pyproject.toml +++ b/sensor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sensor" -version = "0.1.0-alpha.12" +version = "0.1.0-alpha.13" description = "" authors = ["Moritz Makowski "] readme = "README.md" diff --git a/sensor/src/custom_types/config.py b/sensor/src/custom_types/config.py index dc68ce8f..3a8b7a67 100644 --- a/sensor/src/custom_types/config.py +++ b/sensor/src/custom_types/config.py @@ -235,7 +235,7 @@ class Config: class Config(BaseModel): """The config.json for each sensor""" - version: Literal["0.1.0-alpha.12"] + version: Literal["0.1.0-alpha.13"] revision: int verbose_logging: bool active_components: ActiveComponentsConfig @@ -246,7 +246,7 @@ class Config(BaseModel): # validators _val_version = validator("version", pre=True, allow_reuse=True)( - validate_str(allowed=["0.1.0-alpha.12"]), + validate_str(allowed=["0.1.0-alpha.13"]), ) _val_revision = validator("revision", pre=True, allow_reuse=True)( validate_int(minimum=0, maximum=2_147_483_648),