Skip to content

Commit

Permalink
Create tag v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Cornelius Weig committed Feb 27, 2019
1 parent 8a58705 commit 920e1ad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ When using the binaries for installation, also have a look at [doc/USAGE](doc/US

#### Linux
```bash
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.0.0/ketall-linux-amd64.gz && \
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.0.1/ketall-linux-amd64.gz && \
gunzip ketall.gz && chmod +x ketall && mv ketall $GOPATH/bin/
```

#### OSX
```bash
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.0.0/ketall-darwin-amd64.gz && \
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.0.1/ketall-darwin-amd64.gz && \
gunzip ketall.gz && chmod +x ketall && mv ketall $GOPATH/bin/
```

#### Windows
[https://github.com/corneliusweig/ketall/releases/download/v1.0.0/ketall-windows-amd64.zip](https://github.com/corneliusweig/ketall/releases/download/v1.0.0/ketall-windows-amd64.zip)
[https://github.com/corneliusweig/ketall/releases/download/v1.0.1/ketall-windows-amd64.zip](https://github.com/corneliusweig/ketall/releases/download/v1.0.1/ketall-windows-amd64.zip)

### From source

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Ketall retrieves all resources which allow to be fetched. This complements the
usual "kubectl get all" command, which excludes all cluster-level and some
namespaced resources.
More on https://github.com/corneliusweig/ketall/blob/v1.0.0/doc/USAGE.md#usage
More on https://github.com/corneliusweig/ketall/blob/v1.0.1/doc/USAGE.md#usage
`
ketallExamples = `
Get all resources, excluding events
Expand Down
5 changes: 5 additions & 0 deletions doc/releases/v1.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
v1.0.1 - 2/27/2019
==

* Support all authentication plugins (oidc, openstack, gcp, azure) [#13](https://github.com/corneliusweig/ketall/pull/13)
* Improve readme instructions around the `krew` installation method [#12](https://github.com/corneliusweig/ketall/pull/12)
2 changes: 1 addition & 1 deletion hack/make_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ echo -n "Please enter the new tag: "
read -r NEW_TAG


find . -type f -not \( -path './.git/*' -o -path './hack/*' -o -path './.github/*' -o -path './out/*' -o -path './doc/releases/*' \) -print0 |
find . -type f -not \( -name go.mod -o -name go.sum -o -path './.git/*' -o -path './hack/*' -o -path './.github/*' -o -path './out/*' -o -path './doc/releases/*' \) -print0 |
xargs -0 sed -i "s:${OLD_TAG}:${NEW_TAG}:g"

echo "Please check what has changed:"
Expand Down

0 comments on commit 920e1ad

Please sign in to comment.