From 14c9ab33753c63d2af4d9babca9fe892282c66b9 Mon Sep 17 00:00:00 2001 From: Artem Sidorenko Date: Fri, 4 Aug 2017 20:01:36 +0200 Subject: [PATCH] Release 0.0.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ chagen.go | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..973c843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +Changelog +========= + +## [v0.0.1](https://github.com/artem-sidorenko/chagen/releases/v0.0.1) (04.08.2017) + +Merged pull requests +-------------------- +- Release prepararation logic in the Makefile [\#13](https://github.com/artem-sidorenko/chagen/pull/13) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Archiving of release builds [\#12](https://github.com/artem-sidorenko/chagen/pull/12) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Enable preparation of new release, which is not tagged yet [\#11](https://github.com/artem-sidorenko/chagen/pull/11) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Lets have reverse sorting everywhere [\#10](https://github.com/artem-sidorenko/chagen/pull/10) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Enabling CLI flags for specifying a github repo [\#9](https://github.com/artem-sidorenko/chagen/pull/9) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Refactoring of data types [\#8](https://github.com/artem-sidorenko/chagen/pull/8) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Sorting and filtering of release data [\#7](https://github.com/artem-sidorenko/chagen/pull/7) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- First integration between connector and changelog generator [\#6](https://github.com/artem-sidorenko/chagen/pull/6) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Support of GitHub API authentication via environment variable [\#5](https://github.com/artem-sidorenko/chagen/pull/5) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Basic GitHub connector [\#4](https://github.com/artem-sidorenko/chagen/pull/4) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Use gometalinter for linting [\#3](https://github.com/artem-sidorenko/chagen/pull/3) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Refactoring: lets register our commands via init() [\#2](https://github.com/artem-sidorenko/chagen/pull/2) ([artem-sidorenko](https://github.com/artem-sidorenko)) +- Enable Travis CI [\#1](https://github.com/artem-sidorenko/chagen/pull/1) ([artem-sidorenko](https://github.com/artem-sidorenko)) diff --git a/chagen.go b/chagen.go index 9d575f9..4e11380 100644 --- a/chagen.go +++ b/chagen.go @@ -26,7 +26,7 @@ import ( "github.com/urfave/cli" ) -var version = "0.0.1-dev" +var version = "0.0.1" const usage = "Changelog generator for your projects"