summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-08-20 18:08:04 +0200
committerWim <wim@42.be>2016-08-20 18:09:00 +0200
commitc2c135bca261f23d807a2ff0995b7720faeac070 (patch)
treeca0eb75044d6a9c1c638ce5d93f1f8712f2f905a
parenteb20cb237dc2194b5e3f5e6cd79ba9e9fc46a8f8 (diff)
downloadmatterbridge-msglm-c2c135bca261f23d807a2ff0995b7720faeac070.tar.gz
matterbridge-msglm-c2c135bca261f23d807a2ff0995b7720faeac070.tar.bz2
matterbridge-msglm-c2c135bca261f23d807a2ff0995b7720faeac070.zip
Release v0.6.0-beta1v0.6.0-beta1
-rw-r--r--Dockerfile4
-rw-r--r--README.md3
-rw-r--r--matterbridge.go2
3 files changed, 5 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 82b343d2..e2f54669 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,10 +2,10 @@ FROM alpine:edge
ENTRYPOINT ["/bin/matterbridge"]
COPY . /go/src/github.com/42wim/matterbridge
-RUN apk update && apk add go git gcc musl-dev \
+RUN apk update && apk add go git gcc musl-dev ca-certificates \
&& cd /go/src/github.com/42wim/matterbridge \
&& export GOPATH=/go \
&& go get \
&& go build -o /bin/matterbridge \
&& rm -rf /go \
- && apk del --purge git go
+ && apk del --purge git go gcc musl-dev
diff --git a/README.md b/README.md
index 4a562c4a..093566b9 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Configuration changes since v0.5.0 can be found in [changelog.md] (https://githu
## Requirements:
* [Mattermost] (https://github.com/mattermost/platform/)
### Compatibility
-* Matterbridge v0.6.0 (no binaries yet) works with mattermost 3.3.0 and higher [3.3.0 release](https://github.com/mattermost/platform/releases/tag/v3.3.0)
+* Matterbridge v0.6.0 works with mattermost 3.3.0 and higher [3.3.0 release](https://github.com/mattermost/platform/releases/tag/v3.3.0)
* Matterbridge v0.5.0 works with mattermost 3.0.0 - 3.2.0 [3.2.0 release](https://github.com/mattermost/platform/releases/tag/v3.2.0)
@@ -27,6 +27,7 @@ Configuration changes since v0.5.0 can be found in [changelog.md] (https://githu
## binaries
Binaries can be found [here] (https://github.com/42wim/matterbridge/releases/)
+* For use with mattermost 3.3.0 [v0.6.0-beta1](https://github.com/42wim/matterircd/releases/tag/v0.6.0-beta1)
* For use with mattermost 3.0.0-3.2.0 [v0.5.0](https://github.com/42wim/matterircd/releases/tag/v0.5.0)
## building
diff --git a/matterbridge.go b/matterbridge.go
index 58916a65..c11cc43e 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -8,7 +8,7 @@ import (
log "github.com/Sirupsen/logrus"
)
-var version = "0.6.0-dev"
+var version = "0.6.0-beta1"
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})