* Bump to v0.17.0
* Add members from GuildMembersChunk to state (#454)
* Revert "Add members from GuildMembersChunk to state (#454)" (#455)
This reverts commit e4487b30d4
.
* travis: update go versions
* Allowed setting the game to null.
* Allowed for setting status to listening.
* Changed variable names for better consistency
* Reverted updateStatus to maintain API compatibility, instead added now
UpdateListeningStatus method which directly calls UpdateStatusComplex.
* Fix version to 0.18.0-alpha
* Make the new UpdateListeningStatus read a bit better.
* Updated setting game to nil for better compatibility.
* Remove the explicit nil check, as no longer seems to be needed.
* Fix comment styling.
* Remove idle as unused.
14 lines
300 B
YAML
14 lines
300 B
YAML
language: go
|
|
go:
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
install:
|
|
- go get github.com/bwmarrin/discordgo
|
|
- go get -v .
|
|
- go get -v github.com/golang/lint/golint
|
|
script:
|
|
- diff <(gofmt -d .) <(echo -n)
|
|
- go vet -x ./...
|
|
- golint -set_exit_status ./...
|
|
- go test -v -race ./...
|