From 78be14bfc903b25c0d7f41a327a53913f87934b1 Mon Sep 17 00:00:00 2001 From: chroju Date: Sat, 23 Jun 2018 19:21:24 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Tweak=20CircleCI=20process?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 10 ++++++++-- CHANGELOG.md | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0fb356e..51451f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,13 +54,19 @@ workflows: version: 2 test_and_deploy: jobs: - - checkout + - checkout: + filters: + tags: + only: /.*/ - test: requires: - checkout + filters: + tags: + only: /.*/ - deploy: requires: - - checkout + - test filters: tags: only: /^v.*$/ diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..34e9b51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +CHANGELOG +==== + +v0.2.0 (2018-06-23) +---- + +* Make output format easy to see. +* Increase test coverage from about 12% to almost 90%. +* Fix for Go 1.10. +* Fix some bugs. + +v0.1.0 (2018-05-03) +---- + +* The first public release !