From c9ac5291938264a7833bd76ddb53b504996c1d9c Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Sun, 27 Feb 2022 16:39:25 +0100 Subject: [PATCH] version bump --- example/kiwi.yml | 2 +- kiwi_scp/config.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/kiwi.yml b/example/kiwi.yml index 188a0e8..7f0edd9 100644 --- a/example/kiwi.yml +++ b/example/kiwi.yml @@ -2,7 +2,7 @@ # kiwi-scp instance configuration # ################################### -version: 0.2.1 +version: 0.2.2 shells: - /bin/bash diff --git a/kiwi_scp/config.py b/kiwi_scp/config.py index e674a9c..a107dd7 100644 --- a/kiwi_scp/config.py +++ b/kiwi_scp/config.py @@ -164,7 +164,7 @@ class MissingMemberError(ValueError): class KiwiConfig(BaseModel): """represents a kiwi.yml""" - version: constr(regex=RE_SEMVER) = "0.2.1" + version: constr(regex=RE_SEMVER) = "0.2.2" shells: List[Path] = [ Path("/bin/bash"), diff --git a/pyproject.toml b/pyproject.toml index 68d1259..9e206c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kiwi-scp" -version = "0.2.1" +version = "0.2.2" description = "kiwi is the simple tool for managing container servers." authors = ["LDericher <40151420+ldericher@users.noreply.github.com>"]