You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2019/12/06 12:59:27 UTC

[skywalking-cli] branch chore/release created (now 702f10a)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch chore/release
in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git.


      at 702f10a  Add change notes and sign binary files

This branch includes the following new commits:

     new 702f10a  Add change notes and sign binary files

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-cli] 01/01: Add change notes and sign binary files

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch chore/release
in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git

commit 702f10a671b35bbcd6f5f494bcaa0471bbafad6d
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Fri Dec 6 20:59:10 2019 +0800

    Add change notes and sign binary files
---
 CHANGES.md | 16 ++++++++++++++++
 Makefile   |  4 +++-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/CHANGES.md b/CHANGES.md
new file mode 100644
index 0000000..329bace
--- /dev/null
+++ b/CHANGES.md
@@ -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.
diff --git a/Makefile b/Makefile
index c1afb90..155548f 100644
--- a/Makefile
+++ b/Makefile
@@ -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
\ No newline at end of file
+	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