From 5857550d084b4cf58f9a9758e742b732875b379e Mon Sep 17 00:00:00 2001 From: everdrone Date: Thu, 1 Sep 2022 11:13:34 +0200 Subject: [PATCH] chore(release): 0.1.6 --- CHANGELOG.md | 15 +++++++++++++++ go.mod | 2 +- internal/config/version.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2851237..14a433e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.1.6](https://github.com/everdrone/grab/compare/v0.1.5...v0.1.6) (2022-09-01) + + +### Features + +* better logging, add zerolog ([f48d6dd](https://github.com/everdrone/grab/commit/f48d6dda453f431594d6c80285e5043aca601723)) +* checks for updates using github api ([f2a417e](https://github.com/everdrone/grab/commit/f2a417ebc40c518be17bfc797d8022859a2bec50)) + + +### Bug Fixes + +* make latest version check concurrent ([4a13fd8](https://github.com/everdrone/grab/commit/4a13fd8f2cbbc339234c3c6aa01f8746d99e46f0)) +* make update notification parallel to download ([64384d9](https://github.com/everdrone/grab/commit/64384d98271f813ee956373b697aed6185dd1116)) +* replace ioutil with io (SA1019) ([b5895df](https://github.com/everdrone/grab/commit/b5895dfcd0fdc9feb3d092b76e0e89e4ac5c19cc)) + ### [0.1.5](https://github.com/everdrone/grab/compare/v0.1.4...v0.1.5) (2022-08-21) diff --git a/go.mod b/go.mod index a561995..eed548d 100644 --- a/go.mod +++ b/go.mod @@ -13,6 +13,7 @@ require ( github.com/spf13/cobra v1.5.0 github.com/zclconf/go-cty v1.10.0 golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e + golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 ) require ( @@ -27,7 +28,6 @@ require ( github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.1 // indirect golang.org/x/crypto v0.0.0-20220517005047-85d78b3ac167 // indirect - golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect golang.org/x/text v0.3.7 // indirect diff --git a/internal/config/version.go b/internal/config/version.go index 5ad10ed..49a24a0 100644 --- a/internal/config/version.go +++ b/internal/config/version.go @@ -2,7 +2,7 @@ package config const Name = "grab" -const Version = "0.1.5" +const Version = "0.1.6" var CommitHash = "unknown" var BuildType = "devel"