diff --git a/README.md b/README.md index deb9a0f..52b3c31 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,15 @@ Those adjustments (a) remove the display of a title for the note post type and ( ## Changelog +### 1.4.0 + +* Integrate with [Share on Mastodon](https://wordpress.org/plugins/share-on-mastodon/) plugin to send notes to Mastodon: + * Full note text is sent to Mastodon with stripped HTML. + * If a repy to URL is a Mastodon post, it will appear as a reply in Mastodon. +* Fix an issue where titles did not generate as expected on scheduled notes. +* Update `@wordpress/scripts` dependency to 24.6.0. +* Confirm WordPress 6.1 support. + ### 1.3.1 * Update `@wordpress/scripts` dependency to 23.2.0. diff --git a/package-lock.json b/package-lock.json index c35dc25..d4a0a78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "shortnotes", - "version": "1.3.1", + "version": "1.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index ccc0e89..a18dc2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "shortnotes", - "version": "1.3.1", + "version": "1.4.0", "description": "Add a notes post type to WordPress. For your short notes.", "author": "jeremyfelt", "license": "GPL-2.0-or-later", diff --git a/plugin.php b/plugin.php index 8e345b0..4c8223b 100644 --- a/plugin.php +++ b/plugin.php @@ -7,7 +7,7 @@ * Author URI: https://jeremyfelt.com * Text Domain: shortnotes * Domain Path: /languages - * Version: 1.3.1 + * Version: 1.4.0 * * @package shortnotes */ diff --git a/readme.txt b/readme.txt index 0fb0d75..a6c3bd6 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: jeremyfelt Tags: indieweb, notes, replies, short Requires at least: 5.6 Tested up to: 6.1 -Stable tag: 1.3.1 +Stable tag: 1.4.0 License: GPLv2 or Later License URI: https://www.gnu.org/licenses/gpl-2.0.html Requires PHP: 5.6 @@ -63,6 +63,15 @@ Those adjustments (a) remove the display of a title for the note post type and ( ## Changelog +### 1.4.0 + +* Integrate with [Share on Mastodon](https://wordpress.org/plugins/share-on-mastodon/) plugin to send notes to Mastodon: + * Full note text is sent to Mastodon with stripped HTML. + * If a repy to URL is a Mastodon post, it will appear as a reply in Mastodon. +* Fix an issue where titles did not generate as expected on scheduled notes. +* Update `@wordpress/scripts` dependency to 24.6.0. +* Confirm WordPress 6.1 support. + ### 1.3.1 * Update `@wordpress/scripts` dependency to 23.2.0.