diff options
author | Wim <wim@42.be> | 2019-01-31 17:10:57 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2019-01-31 17:10:57 +0100 |
commit | 1d39c771e4b200afac0bf6c92dda5ca39932bda6 (patch) | |
tree | c1446510cf2b3e5288b2d85c4d3a087e18c386de | |
parent | c81c0dd22a7779148c4890cfd4bbf490054f06f1 (diff) | |
download | matterbridge-msglm-1d39c771e4b200afac0bf6c92dda5ca39932bda6.tar.gz matterbridge-msglm-1d39c771e4b200afac0bf6c92dda5ca39932bda6.tar.bz2 matterbridge-msglm-1d39c771e4b200afac0bf6c92dda5ca39932bda6.zip |
Release v1.13.1v1.13.1
-rw-r--r-- | changelog.md | 8 | ||||
-rw-r--r-- | matterbridge.go | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index 6d257b78..58ac9193 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +# v1.13.1 + +This release fixes go modules issues because of https://github.com/labstack/echo/issues/1272 + +## Bugfix +* general: fixes Unable to build 1.13.0 #698 +* api: move to labstack/echo/v4 fixes #698 + # v1.13.0 ## New features diff --git a/matterbridge.go b/matterbridge.go index b3d59c7f..f9d9a9fc 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -15,7 +15,7 @@ import ( ) var ( - version = "1.13.1-dev" + version = "1.13.1" githash string ) |