Skip to content

Commit

Permalink
Merge pull request #216 from Automattic/release-0.8.0
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
psrpinto committed Apr 14, 2023
2 parents 019588e + 373a49c commit a511cc0
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.2
- Requires PHP: 7.4
- License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.7.1
- Stable tag: 0.8.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.8.0

- Fix issue when chatrix plugin is not installed in the default location [[#205](https://github.com/Automattic/chatrix/pull/205)]
- Fix issue with z-index of the popup [[#207](https://github.com/Automattic/chatrix/pull/207)]
- Fix issue that prevented navigating away from the *unknown room* screen [[#213](https://github.com/Automattic/chatrix/pull/213)]
- Allow multiple blocks on the same page or on different browser tabs (behind feature flag, still unstable) [[#214](https://github.com/Automattic/chatrix/pull/214)]

### 0.7.1

- Fix button text from 'Login' to 'Log In'
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: WordPress.Org Community
* Author URI: https://wordpress.org/
* Plugin URI: https://github.com/Automattic/chatrix
* Version: 0.7.1
* Version: 0.8.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.7.1';
$version = '0.8.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.7.1",
"version": "0.8.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.7.1",
"version": "0.8.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.7.1",
"version": "0.8.0",
"description": "Embedded Matrix client for WordPress",
"repository": "git@github.com:Automattic/chatrix.git",
"author": "Automattic",
Expand Down

0 comments on commit a511cc0

Please sign in to comment.