From c7b3fd1f47971ad5ad7ac2b50443fec3cc5af253 Mon Sep 17 00:00:00 2001 From: Ashfame Date: Thu, 16 Mar 2023 19:35:28 +0400 Subject: [PATCH 1/4] Release 0.7.0 --- README.md | 2 +- chatrix.php | 4 ++-- composer.json | 2 +- frontend/block/block.json | 2 +- package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 37ac9f5d..d62c57f0 100644 --- a/README.md +++ b/README.md @@ -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.6.0 +- Stable tag: 0.7.0 - GitHub Plugin URI: https://github.com/Automattic/chatrix Matrix client for WordPress. diff --git a/chatrix.php b/chatrix.php index 22ee38a6..9179d7ed 100644 --- a/chatrix.php +++ b/chatrix.php @@ -5,7 +5,7 @@ * Author: Automattic * Author URI: https://automattic.com/ * Plugin URI: https://github.com/Automattic/chatrix - * Version: 0.6.0 + * Version: 0.7.0 */ use function Automattic\Chatrix\Admin\main as adminMain; @@ -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.6.0'; + $version = '0.7.0'; return $version; } diff --git a/composer.json b/composer.json index 9376cf47..d6700819 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/chatrix", - "version": "0.6.0", + "version": "0.7.0", "description": "WordPress plugin to embed a Matrix client into WordPress pages.", "type": "wordpress-plugin", "license": "GPL", diff --git a/frontend/block/block.json b/frontend/block/block.json index d3b75a38..47e73bd0 100644 --- a/frontend/block/block.json +++ b/frontend/block/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 2, "name": "automattic/chatrix", - "version": "0.6.0", + "version": "0.7.0", "title": "Chatrix", "category": "embed", "icon": "format-chat", diff --git a/package.json b/package.json index 62287d36..ddc71a88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chatrix", - "version": "0.6.0", + "version": "0.7.0", "description": "Embedded Matrix client for WordPress", "repository": "git@github.com:Automattic/chatrix.git", "author": "Automattic", From 67a7fa5f862a125dc549c2cebe3be5e48eda7838 Mon Sep 17 00:00:00 2001 From: Ashfame Date: Thu, 16 Mar 2023 19:54:00 +0400 Subject: [PATCH 2/4] add changelog to README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d62c57f0..7eafce71 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,11 @@ Later, when Matrix makes the switch to OIDC, you are already prepared and can co ## Changelog +### 0.7.0 + +- Implement Room Previews (Peeking) functionality [[#199](https://github.com/Automattic/chatrix/pull/199)] +- Disable restoration to last screen when in Single room mode [[#196](https://github.com/Automattic/chatrix/pull/196)] + ### 0.6.0 - Support for multiple blocks on the same page [[#175](https://github.com/Automattic/chatrix/pull/175)] From 10810412db4eefb4de05b20b7c160ca9c9880148 Mon Sep 17 00:00:00 2001 From: Ashfame Date: Thu, 16 Mar 2023 20:28:09 +0400 Subject: [PATCH 3/4] add relevant changes landing in hydrogen fork + hydrogen upgrade --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 7eafce71..d2040b6c 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,13 @@ Later, when Matrix makes the switch to OIDC, you are already prepared and can co - Implement Room Previews (Peeking) functionality [[#199](https://github.com/Automattic/chatrix/pull/199)] - Disable restoration to last screen when in Single room mode [[#196](https://github.com/Automattic/chatrix/pull/196)] +- Switch to our Hydrogen's fork as dependency which includes un-merged upstream contributions + - Fix query params in SSO + - Allow create room screen to be closed on smaller width screens + - Ensure Service worker is started before anything else + - Fix bug in normalization of homeserver + - Room Previews (Peeking) support + - Fix loading of messages & timelines in some cases ### 0.6.0 From 8e77353b30b4bd0d5748e735a53e11272d79c609 Mon Sep 17 00:00:00 2001 From: Ashfame Date: Thu, 16 Mar 2023 20:33:21 +0400 Subject: [PATCH 4/4] mention upstream's hydrogen version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2040b6c..2af184b1 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Later, when Matrix makes the switch to OIDC, you are already prepared and can co - Implement Room Previews (Peeking) functionality [[#199](https://github.com/Automattic/chatrix/pull/199)] - Disable restoration to last screen when in Single room mode [[#196](https://github.com/Automattic/chatrix/pull/196)] -- Switch to our Hydrogen's fork as dependency which includes un-merged upstream contributions +- Switch to our Hydrogen's fork (ahead of v0.3.8) as dependency which includes un-merged upstream contributions - Fix query params in SSO - Allow create room screen to be closed on smaller width screens - Ensure Service worker is started before anything else