diff --git a/Makefile b/Makefile index 635290c6..7fc93c52 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION ?= 0.16.0 +VERSION ?= 0.16.1 REVISION := $(shell git rev-parse --short HEAD;) BINDIR := $(CURDIR)/bin diff --git a/README.md b/README.md index 6e006115..0b5c55ec 100644 --- a/README.md +++ b/README.md @@ -95,14 +95,8 @@ helm install chartmuseum/mychart --generate-name ## How to Run ### CLI #### Installation -Install binary using [GoFish](https://gofi.sh/): -``` -gofish install chartmuseum -==> Installing chartmuseum... -🐠 chartmuseum 0.16.0: installed in 95.431145ms -``` -or you can use the installer script: +You can use the installer script: ``` curl https://raw.githubusercontent.com/helm/chartmuseum/main/scripts/get-chartmuseum | bash ``` @@ -464,7 +458,7 @@ docker run --rm -it \ -e STORAGE=local \ -e STORAGE_LOCAL_ROOTDIR=/charts \ -v $(pwd)/charts:/charts \ - ghcr.io/helm/chartmuseum:v0.16.0 + ghcr.io/helm/chartmuseum:v0.16.1 ``` Example usage (S3): @@ -477,7 +471,7 @@ docker run --rm -it \ -e STORAGE_AMAZON_PREFIX="" \ -e STORAGE_AMAZON_REGION="us-east-1" \ -v ~/.aws:/home/chartmuseum/.aws:ro \ - ghcr.io/helm/chartmuseum:v0.16.0 + ghcr.io/helm/chartmuseum:v0.16.1 ``` ### Helm Chart diff --git a/scripts/setup-test-environment.sh b/scripts/setup-test-environment.sh index 5ab0a33c..88d20b28 100755 --- a/scripts/setup-test-environment.sh +++ b/scripts/setup-test-environment.sh @@ -1,6 +1,6 @@ #!/bin/bash -ex -HELM_VERSION="3.12.0" +HELM_VERSION="3.12.1" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR/../