Skip to content

Commit

Permalink
Merge pull request #188 from Automattic/release-0.6.0
Browse files Browse the repository at this point in the history
Release 0.6.0
  • Loading branch information
ashfame authored Feb 14, 2023
2 parents 5a1e33c + 65b1d07 commit bbc2d46
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Tested up to: 6.1
- Requires PHP: 7.4
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.5.1
- Stable tag: 0.6.0
- GitHub Plugin URI: https://github.com/Automattic/chatrix

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

## Changelog

### 0.6.0

- Support for multiple blocks on the same page [[#175](https://github.com/Automattic/chatrix/pull/175)]
- Support room alias in configuration [[#179](https://github.com/Automattic/chatrix/pull/179)]
- Fixed a bug where port wasn't allowed in homeserver in configuration [[#184](https://github.com/Automattic/chatrix/pull/184)]
- Provide a filter to choose to not load the logout script if required [[#165](https://github.com/Automattic/chatrix/pull/165)]

### 0.5.1
- Fix issue that caused popup configuration to be ignored [[#173](https://github.com/Automattic/chatrix/pull/173)]

Expand Down
4 changes: 2 additions & 2 deletions chatrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author: Automattic
* Author URI: https://automattic.com/
* Plugin URI: https://github.com/Automattic/chatrix
* Version: 0.5.1
* Version: 0.6.0
*/

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

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

return $version;
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "automattic/chatrix",
"version": "0.5.1",
"version": "0.6.0",
"description": "WordPress plugin to embed a Matrix client into WordPress pages.",
"type": "wordpress-plugin",
"license": "GPL",
Expand Down
2 changes: 1 addition & 1 deletion frontend/block/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "automattic/chatrix",
"version": "0.5.1",
"version": "0.6.0",
"title": "Chatrix",
"category": "embed",
"icon": "format-chat",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chatrix",
"version": "0.5.1",
"version": "0.6.0",
"description": "Embedded Matrix client for WordPress",
"repository": "git@github.com:Automattic/chatrix.git",
"author": "Automattic",
Expand Down

0 comments on commit bbc2d46

Please sign in to comment.