Update to 0.11.1

This commit is contained in:
deadprogram 2016-02-17 17:25:15 -08:00
commit 676c963f14
2 changed files with 3 additions and 1 deletions

View File

@ -154,6 +154,8 @@ func (a *API) robeaux(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Type", "text/javascript; charset=utf-8")
} else if t[len(t)-1] == "css" {
res.Header().Set("Content-Type", "text/css; charset=utf-8")
} else if t[len(t)-1] == "html" {
res.Header().Set("Content-Type", "text/html; charset=utf-8")
}
res.Write(buf)
}

View File

@ -1,6 +1,6 @@
package gobot
const version = "0.11.0"
const version = "0.11.1"
// Version returns the current Gobot version
func Version() string {