Skip to content

Commit

Permalink
Create tag v1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusweig committed Dec 5, 2020
1 parent ac8fa79 commit 6b33eb4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,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.3.5/ketall-amd64-linux.tar.gz && \
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.6/ketall-amd64-linux.tar.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.3.5/ketall-amd64-darwin.tar.gz && \
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.6/ketall-amd64-darwin.tar.gz && \
gunzip ketall.gz && chmod +x ketall && mv ketall $GOPATH/bin/
```

#### Windows
[https://github.com/corneliusweig/ketall/releases/download/v1.3.5/ketall-amd64-windows.zip](https://github.com/corneliusweig/ketall/releases/download/v1.3.5/ketall-amd64-windows.zip)
[https://github.com/corneliusweig/ketall/releases/download/v1.3.6/ketall-amd64-windows.zip](https://github.com/corneliusweig/ketall/releases/download/v1.3.6/ketall-amd64-windows.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 @@ -45,7 +45,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.3.5/doc/USAGE.md#usage
More on https://github.com/corneliusweig/ketall/blob/v1.3.6/doc/USAGE.md#usage
`
ketallExamples = `
Get all resources, excluding events and podmetrics
Expand Down
4 changes: 4 additions & 0 deletions doc/releases/v1.3.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Update dependencies k8s -> 0.19.4 [#113](https://github.com/corneliusweig/ketall/pull/113)
* Bump golangci-lint to 1.31.0 [#102](https://github.com/corneliusweig/ketall/pull/102)
* Bump github.com/spf13/cobra from 1.0.0 to 1.1.0 [#101](https://github.com/corneliusweig/ketall/pull/101)
* Bump dependencies [#100](https://github.com/corneliusweig/ketall/pull/100)
2 changes: 1 addition & 1 deletion hack/run_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export GOPATH="$(go env GOPATH)"
if ! [[ -x "$GOPATH/bin/golangci-lint" ]]
then
echo 'Installing golangci-lint'
"${HACK}"/install_golangci-lint.sh -b "$GOPATH/bin" v1.31.0
"${HACK}"/install_golangci-lint.sh -b "$GOPATH/bin" v1.33.0
fi

"$GOPATH/bin/golangci-lint" run \
Expand Down

0 comments on commit 6b33eb4

Please sign in to comment.