Skip to content

Commit

Permalink
Bump to version 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaime Piña committed Oct 10, 2017
1 parent def91a1 commit 1c31751
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/noti/gen_bin.sh
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion cmd/noti/noti.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

const (
defaultEnv = "NOTI_DEFAULT"
version = "v2.6.0"
version = "v2.7.0"
)

func main() {
Expand Down

0 comments on commit 1c31751

Please sign in to comment.