-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0b1c1b
commit 1599cd1
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] - 2024-05-30 | ||
|
||
## [0.0.1] - 2024-05-30 | ||
|
||
### Added | ||
|
||
First version of `korrel8rcli` command. | ||
- REST client, command line access to a remote korrel8r server. See `korrel8rcli --help` | ||
- Web browser API using data from remote korrel8r server, see `korrel8rcli web --help` | ||
- Client packages for 3rd party use, see ./pkg/swagger | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
VERSION=0.0.1 | ||
|
||
all: build test | ||
|
||
build: | ||
go build ./... | ||
|
||
test: | ||
go test ./... | ||
|
||
release: all | ||
hack/tag-release.sh $(VERSION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
# Apply and push a release tag. | ||
set -e | ||
VERSION=$1 | ||
[[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[^[:space:]]+)?$ ]] || { | ||
echo "not a semantic version X.Y.Z: $VERSION" | ||
exit 1 | ||
} | ||
[ "$(git status -s)" = "" ] || { | ||
git status | ||
echo "working directory not clean" | ||
exit 1 | ||
} | ||
set -x | ||
git tag "v$VERSION" -a -m "Release $VERSION" | ||
git push --follow-tags |