diff --git a/README.md b/README.md index 5a4cd14a..5ba58c69 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.2 - Requires PHP: 5.2.4 - License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 0.3.6 +- Stable tag: 0.4.0 Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. @@ -94,6 +94,10 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi ## Changelog +### 0.4.0 +- Improve notification pagination ([#29]) +- Compatibility fixes for Friends 2.6.0 ([#31]) + ### 0.3.6 - Improve debug logging. @@ -133,6 +137,8 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi - Post replies as comments ([#3]) - Fix a fatal when saving the default post format +[#31]: https://github.com/akirk/enable-mastodon-apps/pull/31 +[#29]: https://github.com/akirk/enable-mastodon-apps/pull/29 [#23]: https://github.com/akirk/enable-mastodon-apps/pull/23 [#3]: https://github.com/akirk/enable-mastodon-apps/pull/3 diff --git a/enable-mastodon-apps.php b/enable-mastodon-apps.php index b00f9bc5..7eca0033 100644 --- a/enable-mastodon-apps.php +++ b/enable-mastodon-apps.php @@ -3,7 +3,7 @@ * Plugin name: Enable Mastodon Apps * Plugin author: Alex Kirk * Plugin URI: https://github.com/akirk/enable-mastodon-apps - * Version: 0.3.6 + * Version: 0.4.0 * * Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. * @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || exit; define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'ENABLE_MASTODON_APPS_VERSION', '0.3.6' ); +define( 'ENABLE_MASTODON_APPS_VERSION', '0.4.0' ); require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php'; OAuth2\Autoloader::register();