Skip to content

Commit

Permalink
Release v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
42wim committed Sep 28, 2017
1 parent 0d10181 commit 8d86a27
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ docker run -p 6667:6667 42wim/matterircd:latest -bind 0.0.0.0:6667
Now you can connect with your IRC client to port 6667 on your docker host.

# Compatibility
* Matterircd v0.14.0 works with mattermost 3.5.x - 3.10.0, 4.0.x - 4.1.x [4.1.0 release](https://github.com/mattermost/platform/releases/tag/v4.1.0)
* Matterircd v0.14.0 also supports slack
* Matterircd v0.15.0 works with slack (initial support) and mattermost 3.8.x - 3.10.0, 4.x

Master branch of matterircd should always work against latest STABLE mattermost release.
If you want to run matterircd with mattermost DEV builds, use the develop branch of matterircd.

# Features

Expand All @@ -43,11 +41,11 @@ If you want to run matterircd with mattermost DEV builds, use the develop branch
# Binaries

You can find the binaries [here](https://github.com/42wim/matterircd/releases/)
* For use with mattermost 3.5.0 and higher [v0.14.0](https://github.com/42wim/matterircd/releases/tag/v0.14.0)
* For use with mattermost 3.8.0 and higher [v0.15.0](https://github.com/42wim/matterircd/releases/tag/v0.15.0)

# Building

Go 1.6+ is required
Go 1.8+ 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 Expand Up @@ -76,6 +74,8 @@ Usage of ./matterircd:
use http connection to mattermost
-mmserver string
specify default mattermost server/instance
-mmskiptlsverify
skip verification of mattermost certificate chain and hostname
-mmteam string
specify default mattermost team
-port int
Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# v0.15.0
##New features
* Support mattermost 4.2 and higher (4.x) (use mattermost v4 API)
* Add -mmskiptlsverify option to skip TLS certificate checks on mattermost

## Enhancements
* Display nickname, if set #120
* Replace IRC parsing function with shellwords like function to allow for passwords with spaces. (#8)

# v0.14.0
## New features
* Support mattermost 4.1
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var (
flagRestrict, flagDefaultTeam, flagDefaultServer, flagTLSBind, flagTLSDir *string
flagInsecure, flagSkipTLSVerify *bool
version = "0.15.0-dev"
version = "0.15.0"
githash string
logger *logrus.Entry
)
Expand Down

0 comments on commit 8d86a27

Please sign in to comment.