From b2de18ef902263fa4890a692d1d295bcd47ee2ae Mon Sep 17 00:00:00 2001 From: Christian Lecherbauer Date: Sun, 24 Apr 2022 15:23:48 +0200 Subject: [PATCH] update version --- .gitignore | 5 +---- README.md | 2 +- config.py | 2 +- online-installer.sh | 2 +- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 098cbb9..5b923bc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,9 @@ .idea -pkg -src -docker-compose.alias.yml .pydeps build dist *.spec .env -/ocker-alias/ +docker-alias/ docker-alias.zip __pycache__ diff --git a/README.md b/README.md index 8cbeeff..fae4557 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Enables you to use docker-containers to execute commands as if they where instal ### Installation -`wget -q -O - "https://raw.githubusercontent.com/clecherbauer/docker-alias/2.0.0/online-installer.sh" | bash` +`wget -q -O - "https://raw.githubusercontent.com/clecherbauer/docker-alias/v2.0.1/online-installer.sh" | bash` ### Usage diff --git a/config.py b/config.py index bb1e0bf..b440da1 100644 --- a/config.py +++ b/config.py @@ -7,7 +7,7 @@ import yaml -VERSION = '2.0.0' +VERSION = 'v2.0.1' YAML_CONFIG_FILE_NAME = 'docker-alias.yml' INI_CONFIG_FILE_NAME = 'config.ini' FAKE_BINARY_DIR = os.path.join(str(Path.home()), '.local', 'docker-alias', 'bin') diff --git a/online-installer.sh b/online-installer.sh index 152d3fd..2e1c375 100755 --- a/online-installer.sh +++ b/online-installer.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -DOCKER_ALIAS_VERSION="2.0.0-beta" +DOCKER_ALIAS_VERSION="v2.0.1" SOURCE_FILE="docker-alias.zip" SOURCE_DIR="docker-alias"