version bump

This commit is contained in:
Jörn-Michael Miehe 2022-02-27 16:39:25 +01:00
parent d080770019
commit c9ac529193
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
# kiwi-scp instance configuration # # kiwi-scp instance configuration #
################################### ###################################
version: 0.2.1 version: 0.2.2
shells: shells:
- /bin/bash - /bin/bash

View file

@ -164,7 +164,7 @@ class MissingMemberError(ValueError):
class KiwiConfig(BaseModel): class KiwiConfig(BaseModel):
"""represents a kiwi.yml""" """represents a kiwi.yml"""
version: constr(regex=RE_SEMVER) = "0.2.1" version: constr(regex=RE_SEMVER) = "0.2.2"
shells: List[Path] = [ shells: List[Path] = [
Path("/bin/bash"), Path("/bin/bash"),

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "kiwi-scp" name = "kiwi-scp"
version = "0.2.1" version = "0.2.2"
description = "kiwi is the simple tool for managing container servers." description = "kiwi is the simple tool for managing container servers."
authors = ["LDericher <40151420+ldericher@users.noreply.github.com>"] authors = ["LDericher <40151420+ldericher@users.noreply.github.com>"]