Skip to content

Commit

Permalink
Merge pull request #7 from corneliusweig/automate-version-bump
Browse files Browse the repository at this point in the history
Automate version bump
  • Loading branch information
Cornelius Weig authored Feb 19, 2019
2 parents d806b8a + e89f57b commit f76d17e
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 9 deletions.
8 changes: 2 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,10 @@

This is a checklist for new releases:

0. Replace old tag in installation instructions and update references.
0. Create release notes in `doc/releases`
0. Update usage instructions, if applicable
0. Add new tag and push tag to GitHub
```bash
git tag vX.Y.Z
git push --tags
```
0. Create a new tag via `hack/make_tag.sh`
0. Push the tag to GitHub `git push --tags`
0. Run `make deploy`
0. Create new release on GitHub Releases and upload artifacts
0. Update [krew-index](https://github.com/GoogleContainerTools/krew-index)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ When using the binaries for installation, also have a look at [doc/USAGE](doc/US

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

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

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

### From source

Expand Down
44 changes: 44 additions & 0 deletions hack/make_tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/env bash

# Copyright 2019 Cornelius Weig
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -euo pipefail

echo -n "Please enter the old tag (maybe $(git describe HEAD --always --tag | sed 's:-.*::')): "
read -r OLD_TAG

echo -n "Please enter the new tag: "
read -r NEW_TAG


find . -type f -not \( -path './hack/*' -o -path './.github/*' -o -path './out/*' \) -print0 |
xargs -0 sed -i "s:${OLD_TAG}:${NEW_TAG}:"

echo "Please check what has changed:"
echo "-------------------->8--------------------"
git diff
echo "-------------------->8--------------------"

echo -n "looks good? (y/n) "
read -r YESNO

if [[ "${YESNO}" != "y" ]]
then
echo "Aborting"
exit 1
fi

git commit -a -m "Create tag ${NEW_TAG}"
git tag "${NEW_TAG}"

0 comments on commit f76d17e

Please sign in to comment.