Skip to content

Commit

Permalink
chore(release): 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
everdrone committed Sep 1, 2022
1 parent aa523bb commit 5857550
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5857550

Please sign in to comment.