Skip to content

Commit

Permalink
chore: add changelog for 0.3.0 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
kezhenxu94 authored Jul 23, 2020
1 parent c5f7fb2 commit f3ee3ca
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f3ee3ca

Please sign in to comment.