Skip to content

Commit

Permalink
Merge pull request #148 from Automattic/release-0.4.0
Browse files Browse the repository at this point in the history
Release 0.4.0
  • Loading branch information
psrpinto authored Dec 16, 2022
2 parents de8a030 + 3b2e004 commit 41ddb85
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
21 changes: 20 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.3.9
- Stable tag: 0.4.0
- GitHub Plugin URI: https://github.com/Automattic/chatrix

Matrix client for WordPress.
Expand Down Expand Up @@ -50,3 +50,22 @@ add_filter( 'chatrix_instances', function ( array $default_instances ) {
);
} );
~~~

## Changelog
### 0.4.0
- Prevent data corruption when more than one Chatrix instance (block or Popup) is active, either in multiple browser tabs or windows, or in the same page [[#75](https://github.com/Automattic/chatrix/pull/75)]
- Allow setting the height of the block from the block editor [[#135](https://github.com/Automattic/chatrix/pull/135)]
- Allow styling the block's border from the block editor [[#139](https://github.com/Automattic/chatrix/pull/139)]
- Styling and layout improvements and fixes in pre-session screens (session selection, login, logout) [[#134](https://github.com/Automattic/chatrix/pull/134)]
- Reduce plugin size by 50%, from 12MB to 6MB [[#143](https://github.com/Automattic/chatrix/pull/143)]
- Update to Hydrogen [0.3.5](https://github.com/vector-im/hydrogen-web/releases/tag/v0.3.5)
- Fix issue that prevented opening rooms with slashes in the room ID [[#451](https://github.com/vector-im/hydrogen-web/issues/451)]
- Improve date headers in room timeline [[#938](https://github.com/vector-im/hydrogen-web/pull/938)]
- Provide basic UI to join room [[#870](https://github.com/vector-im/hydrogen-web/pull/870)]
- Fix an error that can stop sync [[#885](https://github.com/vector-im/hydrogen-web/pull/885)]
- Fetch missing e2ee devices when verifying message sender [[#913](https://github.com/vector-im/hydrogen-web/pull/913)]
- Fix message verification not working in rooms where we haven't sent a message yet [[#920](https://github.com/vector-im/hydrogen-web/pull/920)]
- Various maintenance fixes

### 0.3.9
- Initial public release
2 changes: 1 addition & 1 deletion bin/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ PR_BODY=$(cat <<-EOB
[Commits since $LATEST_VERSION_TAG](https://github.com/Automattic/chatrix/compare/$LATEST_VERSION_TAG...$RELEASE_BRANCH)
EOB
)
gh pr create --base main --label "Prepare Release" --title "Release $VERSION" --body "$PR_BODY" --assignee @me --reviewer akirk,ashfame,psrpinto
gh pr create --draft --base main --label "Prepare Release" --title "Release $VERSION" --body "$PR_BODY" --assignee @me

echo "A Pull Request has been created for Release $VERSION (see URL above)."
echo "The release will automatically be created once the Pull Request is merged."
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.3.9
* Version: 0.4.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.3.9';
$version = '0.4.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.3.9",
"version": "0.4.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.3.9",
"version": "0.4.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.3.9",
"version": "0.4.0",
"description": "Embedded Matrix client for WordPress",
"repository": "[email protected]:Automattic/chatrix.git",
"author": "Automattic",
Expand Down

0 comments on commit 41ddb85

Please sign in to comment.