From 4dab6def9a400e08bb1890b652bfafe2037597db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pi=C3=B1a?= Date: Tue, 10 Sep 2019 23:44:49 -0700 Subject: [PATCH] Increment version to 3.3.0 --- README.md | 9 ++++++--- docs/CHANGELOG.md | 3 ++- docs/man/noti.1 | 4 ++-- docs/man/noti.1.md | 2 +- docs/man/noti.yaml.5 | 4 ++-- docs/man/noti.yaml.5.md | 2 +- docs/release.md | 2 ++ 7 files changed, 16 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea0f0e9e..6877ed5c 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,14 @@ Banner | ✔ | ✔ | ✔ Speech | ✔ | ✔ | ✔ BearyChat | ✔ | ✔ | ✔ HipChat | ✔ | ✔ | ✔ +Mattermost | ✔ | ✔ | ✔ Pushbullet | ✔ | ✔ | ✔ Pushover | ✔ | ✔ | ✔ Pushsafer | ✔ | ✔ | ✔ Simplepush | ✔ | ✔ | ✔ Slack | ✔ | ✔ | ✔ -Mattermost | ✔ | ✔ | ✔ +Telegram | ✔ | ✔ | ✔ +Zulip | ✔ | ✔ | ✔ ``` Checkout the [screenshots] directory to see what the notifications look like on @@ -70,10 +72,11 @@ automatically. Otherwise, you'll need to pass a flag or export a var if you don't use the Makefile. ```shell -go build -mod=vendor +go build -mod=vendor github.com/variadico/noti/cmd/noti # or export GOFLAGS="-mod=vendor" -go build +export GO111MODULE="on" +go build github.com/variadico/noti/cmd/noti ``` Also, `go get` doesn't really work anymore starting in Go 1.12. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3ec0dee8..7e28ea87 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -219,7 +219,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. * OS X-specific flags and usage text from Linux and FreeBSD help. -[Unreleased]: https://github.com/variadico/noti/compare/3.2.0...dev +[Unreleased]: https://github.com/variadico/noti/compare/3.3.0...dev +[3.3.0]: https://github.com/variadico/noti/compare/3.2.0...3.3.0 [3.2.0]: https://github.com/variadico/noti/compare/3.1.0...3.2.0 [3.1.0]: https://github.com/variadico/noti/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/variadico/noti/compare/v2.7.0...3.0.0 diff --git a/docs/man/noti.1 b/docs/man/noti.1 index 9ccf693b..e8d44c8f 100644 --- a/docs/man/noti.1 +++ b/docs/man/noti.1 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 2.7.2 +.\" Automatically generated by Pandoc 2.7.3 .\" -.TH "NOTI" "1" "2018/03/25" "noti 3.2.0" "Noti Manual" +.TH "NOTI" "1" "2018/03/25" "noti 3.3.0" "Noti Manual" .hy .SH NAME .PP diff --git a/docs/man/noti.1.md b/docs/man/noti.1.md index 000da71a..52228fd9 100644 --- a/docs/man/noti.1.md +++ b/docs/man/noti.1.md @@ -1,4 +1,4 @@ -% NOTI(1) noti 3.2.0 | Noti Manual +% NOTI(1) noti 3.3.0 | Noti Manual % Jaime Piña % 2018/03/25 diff --git a/docs/man/noti.yaml.5 b/docs/man/noti.yaml.5 index bbe8ef92..78bad979 100644 --- a/docs/man/noti.yaml.5 +++ b/docs/man/noti.yaml.5 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 2.7.2 +.\" Automatically generated by Pandoc 2.7.3 .\" -.TH "NOTI.YAML" "5" "2018/03/25" "noti 3.2.0" "Noti Configuration File Format" +.TH "NOTI.YAML" "5" "2018/03/25" "noti 3.3.0" "Noti Configuration File Format" .hy .SH NAME .PP diff --git a/docs/man/noti.yaml.5.md b/docs/man/noti.yaml.5.md index c12aca5b..fb337ca0 100644 --- a/docs/man/noti.yaml.5.md +++ b/docs/man/noti.yaml.5.md @@ -1,4 +1,4 @@ -% NOTI.YAML(5) noti 3.2.0 | Noti Configuration File Format +% NOTI.YAML(5) noti 3.3.0 | Noti Configuration File Format % Jaime Piña % 2018/03/25 diff --git a/docs/release.md b/docs/release.md index c9901b65..4cdfb98d 100644 --- a/docs/release.md +++ b/docs/release.md @@ -16,6 +16,8 @@ Make sure latest dev is green on CI. * docs/man/noti.1.md * docs/man/noti.yaml.5.md +Don't forget to `make man` to generate the updated man pages. + ## Merge to master ```