Skip to content

Commit

Permalink
Release v0.5.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
42wim committed Jul 12, 2016
1 parent b49429d commit 055d12e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ 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)
Expand Down
6 changes: 3 additions & 3 deletions matterbridge.go
Expand Up @@ -7,7 +7,7 @@ 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})
Expand All @@ -20,15 +20,15 @@ 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()
if *flagDebug {
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 {
Expand Down

0 comments on commit 055d12e

Please sign in to comment.