Skip to content

Commit bbc2d46

Browse files
authored
Merge pull request #188 from Automattic/release-0.6.0
Release 0.6.0
2 parents 5a1e33c + 65b1d07 commit bbc2d46

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Tested up to: 6.1
77
- Requires PHP: 7.4
88
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
9-
- Stable tag: 0.5.1
9+
- Stable tag: 0.6.0
1010
- GitHub Plugin URI: https://github.com/Automattic/chatrix
1111

1212
Matrix client for WordPress.
@@ -68,6 +68,13 @@ Later, when Matrix makes the switch to OIDC, you are already prepared and can co
6868

6969
## Changelog
7070

71+
### 0.6.0
72+
73+
- Support for multiple blocks on the same page [[#175](https://github.com/Automattic/chatrix/pull/175)]
74+
- Support room alias in configuration [[#179](https://github.com/Automattic/chatrix/pull/179)]
75+
- Fixed a bug where port wasn't allowed in homeserver in configuration [[#184](https://github.com/Automattic/chatrix/pull/184)]
76+
- Provide a filter to choose to not load the logout script if required [[#165](https://github.com/Automattic/chatrix/pull/165)]
77+
7178
### 0.5.1
7279
- Fix issue that caused popup configuration to be ignored [[#173](https://github.com/Automattic/chatrix/pull/173)]
7380

chatrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Author: Automattic
66
* Author URI: https://automattic.com/
77
* Plugin URI: https://github.com/Automattic/chatrix
8-
* Version: 0.5.1
8+
* Version: 0.6.0
99
*/
1010

1111
use function Automattic\Chatrix\Admin\main as adminMain;
@@ -22,7 +22,7 @@ function automattic_chatrix_version(): string {
2222
}
2323

2424
// Do not edit this line, it's automatically set by bin/prepare-release.sh.
25-
$version = '0.5.1';
25+
$version = '0.6.0';
2626

2727
return $version;
2828
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automattic/chatrix",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "WordPress plugin to embed a Matrix client into WordPress pages.",
55
"type": "wordpress-plugin",
66
"license": "GPL",

frontend/block/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "automattic/chatrix",
5-
"version": "0.5.1",
5+
"version": "0.6.0",
66
"title": "Chatrix",
77
"category": "embed",
88
"icon": "format-chat",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatrix",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "Embedded Matrix client for WordPress",
55
"repository": "git@github.com:Automattic/chatrix.git",
66
"author": "Automattic",

0 commit comments

Comments
 (0)