Skip to content

Commit e90b88a

Browse files
committed
Release: 1.2.0
1 parent d5b267b commit e90b88a

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# v1.2.0 / 2019-09-15
2+
3+
* Upgrade to Kubernetes-1.15.3
4+
* Upgrade to Go 1.13.0
5+
* Added support for StatefulSets search
6+
* Added support for `-A` as the shortcut of `--all-namespaces`
7+
* Added support for install via `kubectl krew install grep`
8+
* Fixed `--help` not work for the root command
9+
* Support for command aliases:
10+
- daemonsets, daemonset, ds
11+
- deployments, deployment, deploy
12+
- hpas, hpa
13+
- nodes, node, no
14+
- pods, pod, po
15+
- statefulsets, stateful, sts
16+
117
# v1.1.0 / 2019-07-19
218

319
* Upgrade to Kubernetes-1.15.1

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.PHONY: utilities lint dependency clean build release all
22

33
VERSION_MAJOR := 1
4-
VERSION_MINOR := 1
5-
VERSION_PATCH := 1
6-
VERSION_SUFFIX := -dev
4+
VERSION_MINOR := 2
5+
VERSION_PATCH := 0
6+
VERSION_SUFFIX := # -dev
77

88
COMMIT := $(shell git describe --always)
99
PKGS := $(shell go list ./...)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Installation via [krew](https://github.com/kubernetes-sigs/krew)
4646

4747
Manual Installation
4848

49-
$ export KUBECTL_VERSION="v1.1.0"
49+
$ export KUBECTL_VERSION="v1.2.0"
5050
$ wget https://github.com/guessi/kubectl-grep/releases/download/${KUBECTL_VERSION}/kubectl-grep-`uname -s`-`uname -m`.tar.gz
5151
$ tar zxvf kubectl-grep-`uname -s`-`uname -m`.tar.gz
5252
$ mv kubectl-grep /usr/local/bin

0 commit comments

Comments
 (0)