Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
Chris Rhodes 2015-12-30 21:24:00 -08:00
commit 084feaae95
2 changed files with 5 additions and 6 deletions

View file

@ -1,9 +1,9 @@
DiscordGo provides low level bindings for [Discord](https://discordapp.com/) DiscordGo provides direct low level bindings for [Discord](https://discordapp.com/)
in the [Go](https://golang.org/) Programming Language (Golang). in the [Go](https://golang.org/) Programming Language (Golang).
* See [dgVoice](https://github.com/bwmarrin/dgvoice) for **experimental** voice support. * See [dgVoice](https://github.com/bwmarrin/dgvoice) for **experimental** voice support.
Join [#go_discordgo](https://discord.gg/0SBTUU1wZTWvLIfZ) Discord API channel on Discord for support. Join [#go_discordgo](https://discord.gg/0SBTUU1wZTWT6sqd) Discord API channel on Discord for support.
[![GoDoc](https://godoc.org/github.com/bwmarrin/discordgo?status.svg)](https://godoc.org/github.com/bwmarrin/discordgo) [![GoDoc](https://godoc.org/github.com/bwmarrin/discordgo?status.svg)](https://godoc.org/github.com/bwmarrin/discordgo)
[![Go Walker](http://gowalker.org/api/v1/badge)](https://gowalker.org/github.com/bwmarrin/discordgo) [![Go Walker](http://gowalker.org/api/v1/badge)](https://gowalker.org/github.com/bwmarrin/discordgo)
@ -40,12 +40,11 @@ REST and Websock API.
* List/Create Guild Channels * List/Create Guild Channels
* List Guild Members * List Guild Members
* Receive/Send Messages to Channels * Receive/Send Messages to Channels
* Permissions related functions.
* Editing User Profile settings
## What's Unfinished ## What's Unfinished
* Make changes as needed to pass GoLint, GoVet, GoCyclo, etc. (goreportcard.com)
* Editing User Profile settings
* Permissions related functions.
* Functions for Maintenance Status * Functions for Maintenance Status
* Finish Voice support. * Finish Voice support.
* Add a higher level interface with user friendly helper functions. * Add a higher level interface with user friendly helper functions.

View file

@ -16,7 +16,7 @@ package discordgo
import "fmt" import "fmt"
// DiscordGo Version, follows Symantic Versioning. (http://semver.org/) // DiscordGo Version, follows Symantic Versioning. (http://semver.org/)
const VERSION = "0.7.0-alpha" const VERSION = "0.8.0-alpha"
/* /*
type Config struct { type Config struct {