Skip to content

Commit

Permalink
Release version 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaime Piña committed Nov 26, 2016
1 parent 2716746 commit dda6e48
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.5.0]

## Added

* Support for Simplepush.
Expand Down Expand Up @@ -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
Expand Down
13 changes: 9 additions & 4 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cmd/noti/noti.go
Expand Up @@ -24,7 +24,7 @@ import (

const (
defaultEnv = "NOTI_DEFAULT"
version = "v2.4.0"
version = "v2.5.0"
)

func main() {
Expand Down

0 comments on commit dda6e48

Please sign in to comment.