Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.0.9
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Prażak <pawel.prazak@gmail.com>
  • Loading branch information
pawelprazak committed Jan 19, 2021
1 parent 87d053c commit 179fe48
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ bump-version: ## Bump the version in the version file. Set BUMP to [ patch | maj
@echo "Bumping VERSION.txt from $(VERSION) to $(NEW_VERSION)"
@echo $(NEW_VERSION) > VERSION.txt
@echo "Updating version from $(VERSION) to $(NEW_VERSION) in README.md"
sed -i s/$(VERSION)/$(NEW_VERSION)/g README.md
sed -i s/$(VERSION)/$(NEW_VERSION)/g internal/version/version.go
sed -i s/$(VERSION)/$(NEW_VERSION)/g examples/kubernetes.yaml
sed -i '' 's/$(VERSION)/$(NEW_VERSION)/g' README.md
sed -i '' 's/$(VERSION)/$(NEW_VERSION)/g' internal/version/version.go
sed -i '' 's/$(VERSION)/$(NEW_VERSION)/g' examples/kubernetes.yaml
git add VERSION.txt README.md internal/version/version.go examples/kubernetes.yaml
git commit -vseam "Bump version to $(NEW_VERSION)"
@echo "Run make tag to create and push the tag for new version $(NEW_VERSION)"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# kubedrainer
[![Build Status](https://travis-ci.org/VirtusLab/kubedrainer.svg?branch=master)](https://travis-ci.org/VirtusLab/kubedrainer)
[![Binary](https://img.shields.io/badge/binary-v0.0.8-brightgreen.svg)](https://github.com/VirtusLab/kubedrainer/releases/tag/v0.0.8)
[![Container](https://img.shields.io/badge/container-v0.0.8-brightgreen.svg)](https://quay.io/VirtusLab/kubedrainer:v0.0.8)
[![Binary](https://img.shields.io/badge/binary-v0.0.9-brightgreen.svg)](https://github.com/VirtusLab/kubedrainer/releases/tag/v0.0.9)
[![Container](https://img.shields.io/badge/container-v0.0.9-brightgreen.svg)](https://quay.io/VirtusLab/kubedrainer:v0.0.9)
[![Go Report Card](https://goreportcard.com/badge/github.com/VirtusLab/kubedrainer)](https://goreportcard.com/report/github.com/VirtusLab/kubedrainer)

Kubernetes Node Drainer helps to evict pods from nodes before shutdown.
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.8
v0.0.9
2 changes: 1 addition & 1 deletion examples/kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ spec:
serviceAccountName: kubedrainer
containers:
- name: kubedrainer
image: quay.io/virtuslab/kubedrainer:v0.0.8
image: quay.io/virtuslab/kubedrainer:v0.0.9
env:
- name: KUBEDRAINER_NODE
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package version
import "fmt"

// VERSION indicates which version of the binary is running.
var VERSION = "v0.0.8"
var VERSION = "v0.0.9"

// GITCOMMIT indicates which git hash the binary was built off of
var GITCOMMIT = ""
Expand Down

0 comments on commit 179fe48

Please # to comment.