From 92f8104f2b1a93bd29b7a646decbae879aa084d3 Mon Sep 17 00:00:00 2001 From: Songmu Date: Mon, 5 Apr 2021 20:31:16 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.7.0 ## [v0.7.0](https://github.com/Songmu/goxz/compare/v0.6.0...v0.7.0) (2021-04-05) * make -trimpath true by default [#27](https://github.com/Songmu/goxz/pull/27) ([Songmu](https://github.com/Songmu)) * Add -trimpath option [#24](https://github.com/Songmu/goxz/pull/24) ([hirose31](https://github.com/hirose31)) * migrate CIs to GitHub Actions [#25](https://github.com/Songmu/goxz/pull/25) ([Songmu](https://github.com/Songmu)) * Do not use -Hwindowsgui [#21](https://github.com/Songmu/goxz/pull/21) ([mattn](https://github.com/mattn)) --- CHANGELOG.md | 7 +++++++ version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 836d277..c06bbc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v0.7.0](https://github.com/Songmu/goxz/compare/v0.6.0...v0.7.0) (2021-04-05) + +* make -trimpath true by default [#27](https://github.com/Songmu/goxz/pull/27) ([Songmu](https://github.com/Songmu)) +* Add -trimpath option [#24](https://github.com/Songmu/goxz/pull/24) ([hirose31](https://github.com/hirose31)) +* migrate CIs to GitHub Actions [#25](https://github.com/Songmu/goxz/pull/25) ([Songmu](https://github.com/Songmu)) +* Do not use -Hwindowsgui [#21](https://github.com/Songmu/goxz/pull/21) ([mattn](https://github.com/mattn)) + ## [v0.6.0](https://github.com/Songmu/goxz/compare/v0.5.0...v0.6.0) (2020-01-17) * implement -static flag to build static binary [#20](https://github.com/Songmu/goxz/pull/20) ([Songmu](https://github.com/Songmu)) diff --git a/version.go b/version.go index b204a45..4d766ae 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package goxz -const version = "0.6.0" +const version = "0.7.0" var revision = "Devel"