summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--changelog.md28
-rw-r--r--matterbridge.go2
3 files changed, 32 insertions, 2 deletions
diff --git a/README.md b/README.md
index 38239261..fc233b17 100644
--- a/README.md
+++ b/README.md
@@ -164,7 +164,7 @@ See <https://github.com/42wim/matterbridge/wiki>
### Binaries
-- Latest stable release [v1.22.3](https://github.com/42wim/matterbridge/releases/latest)
+- Latest stable release [v1.23.0](https://github.com/42wim/matterbridge/releases/latest)
- Development releases (follows master) can be downloaded [here](https://github.com/42wim/matterbridge/actions) selecting the latest green build and then artifacts.
To install or upgrade just download the latest [binary](https://github.com/42wim/matterbridge/releases/latest). On \*nix platforms you may need to make the binary executable - you can do this by running `chmod a+x` on the binary (example: `chmod a+x matterbridge-1.20.0-linux-64bit`). After downloading (and making the binary executable, if necessary), follow the instructions on the [howto](https://github.com/42wim/matterbridge/wiki/How-to-create-your-config) for a step by step walkthrough for creating your configuration.
@@ -183,11 +183,13 @@ If you really want to build from source, follow these instructions:
Go 1.17+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed.
To install the latest stable run:
+
```bash
go install github.com/42wim/matterbridge
```
To install the latest dev run:
+
```bash
go install github.com/42wim/matterbridge@master
```
diff --git a/changelog.md b/changelog.md
index 3809f01c..518316a1 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,31 @@
+# v1.23.0
+
+## New features
+
+- irc: Add UserName and RealName options for IRC (#1590)
+- mattermost: Add support for mattermost v6
+- nctalk: Add support for separate display name (nctalk) (#1506)
+- xmpp: Add support for anonymous connection (xmpp) (#1548)
+
+## Enhancements
+
+- general: Update vendored libraries
+- docker: Use github actions to build dockerhub/ghcr.io images
+- docker: Update GH actions to multi arch (arm64) (#1614)
+- telegram: Convert .tgs with go libraries (and cgo) (telegram) (#1569)
+
+## Bugfix
+
+- mumble: Remove newline character in bridge multiline messages (mumble) (#1572)
+- slack: Add space before file upload comment (slack) (#1554)
+- slack: Invalidate user in cache on user change event (#1604)
+- xmpp: Fix XMPP parseNick function (#1547)
+
+This release couldn't exist without the following contributors:
+@powerjungle, @gary-kim, @KingPin, @Benau, @keenan-v1, @tytan652, @KidA001,@minecraftchest1, @irydacea
+
+##
+
# v1.22.3
## Bugfixes
diff --git a/matterbridge.go b/matterbridge.go
index 32476dee..849244fb 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -16,7 +16,7 @@ import (
)
var (
- version = "1.23.0-dev"
+ version = "1.23.0"
githash string
flagConfig = flag.String("conf", "matterbridge.toml", "config file")