From 1c3175122b7c7c4bed7a64fc0bd4054dde2203c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pi=C3=B1a?= Date: Mon, 9 Oct 2017 20:10:19 -0700 Subject: [PATCH] Bump to version 2.7.0 --- CHANGELOG.md | 10 +++++++++- README.md | 6 +++--- cmd/noti/gen_bin.sh | 2 +- cmd/noti/noti.go | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c46becee..f3542785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.7.0] + +## Deprecated + +* Single-dash long options. Any scripts using `-banner` or `-title` should be + updated to use `--banner` or `--title` instead. + ## [2.6.0] ## Added @@ -119,7 +126,8 @@ Object-C, which shows (nicer) Terminal icon. * `-f` flag for OS X. This caused unexpected behavior for people who use iTerm2. * OS X-specific flags and usage text from Linux and FreeBSD help. -[Unreleased]: https://github.com/variadico/noti/compare/v2.6.0...dev +[Unreleased]: https://github.com/variadico/noti/compare/v2.7.0...dev +[2.7.0]: https://github.com/variadico/noti/compare/v2.6.0...v2.7.0 [2.6.0]: https://github.com/variadico/noti/compare/v2.5.0...v2.6.0 [2.5.0]: https://github.com/variadico/noti/compare/v2.4.0...v2.5.0 [2.4.0]: https://github.com/variadico/noti/compare/v2.3.0...v2.4.0 diff --git a/README.md b/README.md index 296658b6..739d6326 100644 --- a/README.md +++ b/README.md @@ -49,13 +49,13 @@ with your browser or just use `curl`! ```shell # For macOS. -curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.darwin-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.7.0/noti2.7.0.darwin-amd64.tar.gz | tar -xz # For Linux. -curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.linux-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.7.0/noti2.7.0.linux-amd64.tar.gz | tar -xz # For Windows. -curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.windows-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.7.0/noti2.7.0.windows-amd64.tar.gz | tar -xz ``` ## Usage diff --git a/cmd/noti/gen_bin.sh b/cmd/noti/gen_bin.sh index 4b43d74f..99575279 100755 --- a/cmd/noti/gen_bin.sh +++ b/cmd/noti/gen_bin.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -ex -VERSION="2.6.0" +VERSION="2.7.0" rm -f noti rm -f noti.exe diff --git a/cmd/noti/noti.go b/cmd/noti/noti.go index e30e3918..acf18fe8 100644 --- a/cmd/noti/noti.go +++ b/cmd/noti/noti.go @@ -25,7 +25,7 @@ import ( const ( defaultEnv = "NOTI_DEFAULT" - version = "v2.6.0" + version = "v2.7.0" ) func main() {