diff --git a/README.md b/README.md index 86d4a3c..b2c2d87 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ A specific version can be installed by executing the following command: ```sh # Replace the version number with the desired version tag -curl -sSL https://github.com/rodrigo-speller/atone/releases/download/v0.0.5/atone-install.sh | sh +curl -sSL https://github.com/rodrigo-speller/atone/releases/download/v0.0.7/atone-install.sh | sh ``` # How to use diff --git a/sample/docker-release/Dockerfile b/sample/docker-release/Dockerfile index 28359be..f00c49b 100644 --- a/sample/docker-release/Dockerfile +++ b/sample/docker-release/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # install atone -ENV ATONE_VERSION=0.0.4 +ENV ATONE_VERSION=0.0.7 ARG ATONE_INSTALL_URL="https://github.com/rodrigo-speller/atone/releases/download/v$ATONE_VERSION/atone-install.sh" RUN curl -sSL $ATONE_INSTALL_URL | bash /dev/stdin diff --git a/scripts/atone-install.sh b/scripts/atone-install.sh index a118159..099afc8 100755 --- a/scripts/atone-install.sh +++ b/scripts/atone-install.sh @@ -12,7 +12,7 @@ set -e install() { - ATONE_VERSION=0.0.6 + ATONE_VERSION=0.0.7 ATONE_BASE_URL="https://github.com/rodrigo-speller/atone/releases/download/v${ATONE_VERSION}" ATONE_TEMP=$(mktemp -d)