chore: add changelog for 0.3.0 (#48)

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 936d076..d655c4b 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -23,12 +23,10 @@
       - 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 @@
 
       - 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
diff --git a/CHANGES.md b/CHANGES.md
index 3b535af..4dcd491 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,6 +2,22 @@
 ==================
 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
 ------------------
 
diff --git a/Makefile b/Makefile
index 9ad1417..cd85de2 100644
--- a/Makefile
+++ b/Makefile
@@ -80,7 +80,7 @@
 	$(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 @@
 	-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
diff --git a/go.mod b/go.mod
index 67ae65d..f1bd056 100644
--- a/go.mod
+++ b/go.mod
@@ -3,6 +3,7 @@
 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