From f66466de949831f5be92880b42f66c1a6505b509 Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:52:23 +0200 Subject: [PATCH] bump version --- bump-version.sh | 1 - example/kiwi.yml | 2 +- kiwi_scp/data/etc/version_tag | 2 +- pyproject.toml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/bump-version.sh b/bump-version.sh index c313d4c..7c4b7b3 100755 --- a/bump-version.sh +++ b/bump-version.sh @@ -6,7 +6,6 @@ this_dir="$(dirname "${this}")" git_branch="$(git rev-parse --abbrev-ref HEAD)" git_tag="$(git describe --abbrev=0)" version_str="${git_branch##*/}" -version_str="0.1.6" echo "${version_str}" > "${this_dir}/kiwi_scp/data/etc/version_tag" sed -ri "s/(version\s*:).*$/\1 '${version_str}'/" "${this_dir}/example/kiwi.yml" diff --git a/example/kiwi.yml b/example/kiwi.yml index ff10127..1eb6293 100644 --- a/example/kiwi.yml +++ b/example/kiwi.yml @@ -2,7 +2,7 @@ # kiwi-scp instance configuration # ################################### -version: '0.1.6' +version: '0.1.7' runtime: storage: /tmp/kiwi diff --git a/kiwi_scp/data/etc/version_tag b/kiwi_scp/data/etc/version_tag index c946ee6..1180819 100644 --- a/kiwi_scp/data/etc/version_tag +++ b/kiwi_scp/data/etc/version_tag @@ -1 +1 @@ -0.1.6 +0.1.7 diff --git a/pyproject.toml b/pyproject.toml index b134696..9e5d4ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kiwi-scp" -version = "0.1.6" +version = "0.1.7" description = "kiwi is the simple tool for managing container servers." authors = ["ldericher <40151420+ldericher@users.noreply.github.com>"]