add changelog files for things that have changed since v1.0
This commit is contained in:
parent
690e59d258
commit
ee4e7cf773
6 changed files with 6 additions and 1 deletions
1
changelog.d/28.feature
Normal file
1
changelog.d/28.feature
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Add support for Slack notifications. Contributed by @awesome-manuel.
|
1
changelog.d/29.misc
Normal file
1
changelog.d/29.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Update minimum go version to 1.11.
|
1
changelog.d/30.misc
Normal file
1
changelog.d/30.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Update minimum go version to 1.11.
|
1
changelog.d/31.misc
Normal file
1
changelog.d/31.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Replace vendored libraries with `go mod`.
|
1
changelog.d/32.misc
Normal file
1
changelog.d/32.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Add Dockerfile. Contributed by @awesome-manuel.
|
2
slack.go
2
slack.go
|
@ -1,9 +1,9 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
type slackClient struct {
|
type slackClient struct {
|
||||||
|
|
Reference in a new issue