commit 819a5c563f0d7e2209c6901e462cf24b9a84f311
Author: Wim <wim@42.be>
Date: Tue Jul 12 21:32:15 2016 +0000
diff --git a/README.md b/README.md
index 5bb357c..5392f7f 100644
--- a/README.md
+++ b/README.md
@@ -177 +177 @@ Breaking changes for matterbridge can be found in [migration](https://github.com
* A dedicated user(bot) on your mattermost instance.
## binaries
-Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/tag/v0.5)
+Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/tag/v0.5-beta1)
## building
Go 1.6+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed, including setting up your [GOPATH] (https://golang.org/doc/code.html#GOPATH)
diff --git a/matterbridge.go b/matterbridge.go
index 85be67c..29f28b0 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -77 +77 @@ import (
log "github.com/Sirupsen/logrus"
)
-var Version = "0.5-dev"
+var version = "0.5.0-beta1"
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
@@ -207 +207 @@ func main() {
flagPlus := flag.Bool("plus", false, "running using API instead of webhooks")
flag.Parse()
if *flagVersion {
- fmt.Println("Version:", Version)
+ fmt.Println("version:", version)
return
}
flag.Parse()
@@ -287 +287 @@ func main() {
log.Info("enabling debug")
log.SetLevel(log.DebugLevel)
}
- fmt.Println("running version", Version)
+ fmt.Println("running version", version)
if *flagPlus {
bridge.NewBridge("matterbot", bridge.NewConfig(*flagConfig), "")
} else {