Skip to content

Commit

Permalink
Add change notes and sign binary files (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
kezhenxu94 authored and wu-sheng committed Dec 6, 2019
1 parent 43886a7 commit 7db8a26
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Changes by Version
==================
Release Notes.

0.1.0
------------------

#### Features
- Add command `swctl service` to list services
- Add command `swctl instance` and `swctl search` to list and search instances of service.
- Add command `swctl endpoint` to list endpoints of service.
- Add command `swctl linear-metrics` to query linear metrics and plot the metrics in Ascii Graph mode.
- Add command `swctl single-metrics` to query single-value metrics.

#### Chores
- Set up GitHub actions to check code styles, licenses, and tests.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,6 @@ release-bin: build

release: verify license release-src release-bin
gpg --batch --yes --armor --detach-sig $(RELEASE_SRC).tgz
shasum -a 512 $(RELEASE_SRC).tgz > $(RELEASE_SRC).tgz.sha512
shasum -a 512 $(RELEASE_SRC).tgz > $(RELEASE_SRC).tgz.sha512
gpg --batch --yes --armor --detach-sig $(RELEASE_BIN).tgz
shasum -a 512 $(RELEASE_BIN).tgz > $(RELEASE_BIN).tgz.sha512

0 comments on commit 7db8a26

Please sign in to comment.