From b876ddd2c4d16c3faa4e63bf9136f17ad5676aed Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Tue, 22 Feb 2022 13:50:26 +0100 Subject: [PATCH] kiwi URI --- dist/install.sh | 2 +- example/kiwi.yml | 2 +- kiwi_scp/config.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/install.sh b/dist/install.sh index 13ce687..d8a9b31 100755 --- a/dist/install.sh +++ b/dist/install.sh @@ -7,7 +7,7 @@ # default installation directory INSTALL_DIR_DEFAULT="/usr/local/sbin" # URI of "kiwi" launcher script -KIWI_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/kiwi" +KIWI_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/dist/kiwi" ############# # FUNCTIONS # diff --git a/example/kiwi.yml b/example/kiwi.yml index a9f55fa..188a0e8 100644 --- a/example/kiwi.yml +++ b/example/kiwi.yml @@ -2,7 +2,7 @@ # kiwi-scp instance configuration # ################################### -version: 0.2.0 +version: 0.2.1 shells: - /bin/bash diff --git a/kiwi_scp/config.py b/kiwi_scp/config.py index c60f81c..2c47c5a 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.0" + version: constr(regex=RE_SEMVER) = "0.2.1" shells: List[Path] = [ Path("/bin/bash"), diff --git a/pyproject.toml b/pyproject.toml index 7407cf8..898f997 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kiwi-scp" -version = "0.2.0" +version = "0.2.1" description = "kiwi is the simple tool for managing container servers." authors = ["ldericher <40151420+ldericher@users.noreply.github.com>"]