Skip to content

Commit

Permalink
0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
progrhyme committed Jul 11, 2020
1 parent 5f71a8b commit b26ba0d
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
@@ -1,3 +1,18 @@
## 0.6.1 (2020-07-11)

Feature: ([#7](https://github.com/progrhyme/binq/pull/7))

- (CLI/install) Enable to specify download version by `@VERSION` suffix to source target argument
- (CLI/install) Enable to specify default install directory by `$BINQ_BIN_DIR` environment variable

Bug Fix: ([#7](https://github.com/progrhyme/binq/pull/7))

- (CLI/new) Can't create a file with `-f|--file` option

Other: ([#7](https://github.com/progrhyme/binq/pull/7))

- (internal) Use github.com/progrhyme/go-lv package as logger instead of `internal/logs`

## 0.6.0 (2020-07-06)

Feature: ([#6](https://github.com/progrhyme/binq/pull/6))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Typical commands to achieve this are following:

```sh
bin=/usr/local/bin # Change to your favorite path
version=0.6.0 # Make sure this is the latest
version=0.6.1 # Make sure this is the latest
os=darwin # or "linux" is supported
tmpfile=$(mktemp)
curl -Lo $tmpfile "https://github.com/progrhyme/binq/releases/download/v${version}/binq_${version}_${os}_amd64.zip"
Expand Down
2 changes: 1 addition & 1 deletion binq.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package binq

const (
Version = "0.6.0"
Version = "0.6.1"
EnvKeyServer = "BINQ_SERVER" // URL of Index Server for install operation
EnvKeyBinDir = "BINQ_BIN_DIR" // Default location to download items
)

0 comments on commit b26ba0d

Please sign in to comment.