From dda6e48e611828b6959f7c59173177fad3291d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pi=C3=B1a?= Date: Fri, 25 Nov 2016 19:46:36 -0800 Subject: [PATCH] Release version 2.5.0 --- CHANGELOG.md | 5 ++++- README.md | 13 +++++++++---- cmd/noti/noti.go | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c26cf2..46b51d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.5.0] + ## Added * Support for Simplepush. @@ -111,7 +113,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.4.0...dev +[Unreleased]: https://github.com/variadico/noti/compare/v2.5.0...dev +[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 [2.3.0]: https://github.com/variadico/noti/compare/v2.2.2...v2.3.0 [2.2.2]: https://github.com/variadico/noti/compare/v2.2.1...v2.2.2 diff --git a/README.md b/README.md index ac5b1806..dffdd22c 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,13 @@ with your browser or just use `curl`! ```shell # For macOS. -curl -L https://github.com/variadico/noti/releases/download/v2.4.0/noti2.4.0.darwin-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.5.0/noti2.5.0.darwin-amd64.tar.gz | tar -xz # For Linux. -curl -L https://github.com/variadico/noti/releases/download/v2.4.0/noti2.4.0.linux-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.5.0/noti2.5.0.linux-amd64.tar.gz | tar -xz # For Windows. -curl -L https://github.com/variadico/noti/releases/download/v2.4.0/noti2.4.0.windows-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.5.0/noti2.5.0.windows-amd64.tar.gz | tar -xz ``` ## Usage @@ -92,11 +92,14 @@ noti [options] [utility [args...]] NOTI_PUSHOVER_DEST to be set. -l, -simplepush Trigger a Simplepush notification. Requires NOTI_SIMPLEPUSH_KEY - to be set. Optionally, customize ringtone and vibration with + to be set. Optionally, customize ringtone and vibration with NOTI_SIMPLEPUSH_EVENT. -k, -slack Trigger a Slack notification. Requires NOTI_SLACK_TOK and NOTI_SLACK_DEST to be set. +-c, -bearychat + Trigger a BearyChat notification. Requries NOTI_BC_INCOMING_URI + to be set. -v, -version Print noti version and exit. @@ -117,6 +120,8 @@ NOTI_DEFAULT Notification types noti should trigger in a space-delimited list. For example, set NOTI_DEFAULT="banner speech pushbullet slack" to enable all available notifications to fire sequentially. +NOTI_BC_INCOMING_URI + BearyChat incoming URI. NOTI_HIPCHAT_TOK HipChat access token. Log into your HipChat account and retrieve a token from the Room Notification Tokens page. diff --git a/cmd/noti/noti.go b/cmd/noti/noti.go index fd8b19d7..3be47b84 100644 --- a/cmd/noti/noti.go +++ b/cmd/noti/noti.go @@ -24,7 +24,7 @@ import ( const ( defaultEnv = "NOTI_DEFAULT" - version = "v2.4.0" + version = "v2.5.0" ) func main() {