未验证 提交 f3ee3cad 编写于 作者: K kezhenxu94 提交者: GitHub

chore: add changelog for 0.3.0 (#48)

上级 c5f7fb21
......@@ -23,12 +23,10 @@ on:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
......@@ -37,12 +35,8 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: checkout submodules
shell: bash
run: |
git submodule sync --recursive
git -c protocol.version=2 submodule update --init --force --recursive --depth=1
with:
submodules: true
- name: Check License
run: make license
......
......@@ -2,6 +2,22 @@ Changes by Version
==================
Release Notes.
0.3.0
------------------
### Features
- Add health check command
- Add `trace` command
### Bug Fixes
- Fix wrong metrics graphql path
### Chores
- Move tools setup into Makefile to easy the setup work locally
0.2.0
------------------
......
......@@ -80,7 +80,7 @@ license: clean tools
$(GO_LICENSER) -d -licensor='Apache Software Foundation (ASF)' .
.PHONY: verify
verify: clean lint test license
verify: clean license lint test
.PHONY: fix
fix: tools
......@@ -126,7 +126,7 @@ release-bin: build
-tar -zcvf $(RELEASE_BIN).tgz $(RELEASE_BIN)
-rm -rf $(RELEASE_BIN)
release: verify license release-src release-bin
release: verify release-src release-bin
gpg --batch --yes --armor --detach-sig $(RELEASE_SRC).tgz
shasum -a 512 $(RELEASE_SRC).tgz > $(RELEASE_SRC).tgz.sha512
gpg --batch --yes --armor --detach-sig $(RELEASE_BIN).tgz
......
......@@ -3,6 +3,7 @@ module github.com/apache/skywalking-cli
go 1.13
require (
github.com/99designs/gqlgen v0.11.3 // indirect
github.com/gizak/termui/v3 v3.1.0
github.com/gobuffalo/packr/v2 v2.8.0
github.com/machinebox/graphql v0.2.2
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册