diff --git a/CHANGELOG.md b/CHANGELOG.md index 46b51d53..c46becee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [2.6.0] + +## Added + +* Support for Pushsafer. + ## [2.5.0] ## Added @@ -113,7 +119,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.5.0...dev +[Unreleased]: https://github.com/variadico/noti/compare/v2.6.0...dev +[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 [2.3.0]: https://github.com/variadico/noti/compare/v2.2.2...v2.3.0 diff --git a/README.md b/README.md index eecb94e5..43aeb0f7 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.5.0/noti2.5.0.darwin-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.darwin-amd64.tar.gz | tar -xz # For Linux. -curl -L https://github.com/variadico/noti/releases/download/v2.5.0/noti2.5.0.linux-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.linux-amd64.tar.gz | tar -xz # For Windows. -curl -L https://github.com/variadico/noti/releases/download/v2.5.0/noti2.5.0.windows-amd64.tar.gz | tar -xz +curl -L https://github.com/variadico/noti/releases/download/v2.6.0/noti2.6.0.windows-amd64.tar.gz | tar -xz ``` ## Usage @@ -93,7 +93,7 @@ noti [options] [utility [args...]] NOTI_PUSHOVER_DEST to be set. -u, -pushsafer Trigger a Pushsafer notification. Requires NOTI_PUSHSAFER_KEY - to be set. + to be set. -l, -simplepush Trigger a Simplepush notification. Requires NOTI_SIMPLEPUSH_KEY to be set. Optionally, customize ringtone and vibration with @@ -141,7 +141,7 @@ NOTI_PUSHOVER_DEST Pushover message destination. Should be your User Key. NOTI_PUSHSAFER_KEY Pushsafer private or alias key. Log into your Pushsafer account and note - your private or alias key. + your private or alias key. NOTI_SIMPLEPUSH_KEY Simplepush key. Install the Simplepush app and retrieve your key there. NOTI_SLACK_TOK diff --git a/cmd/noti/noti.go b/cmd/noti/noti.go index 5a0009ab..63124fe1 100644 --- a/cmd/noti/noti.go +++ b/cmd/noti/noti.go @@ -25,7 +25,7 @@ import ( const ( defaultEnv = "NOTI_DEFAULT" - version = "v2.5.0" + version = "v2.6.0" ) func main() {