From 8ea87ae3f0ced7b3a9341ffe8ce644f12eed02b4 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Fri, 21 Apr 2023 14:15:29 +0200 Subject: [PATCH] Version bump + Changelog --- README.md | 6 +++++- enable-mastodon-apps.php | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4b0adc2f..d6623c75 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.0 +- Stable tag: 0.3.1 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.3.1 +- Implemented: Attachment descriptions (and updates for it) +- Use the first line of a post as the post title if we're using a standard post format + ### 0.3.0 - Implemented: search for a specific remote account to follow it - Implemented: Notifications for mentions diff --git a/enable-mastodon-apps.php b/enable-mastodon-apps.php index 9de71171..1c786c81 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.0 + * Version: 0.3.1 * * 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.0' ); +define( 'ENABLE_MASTODON_APPS_VERSION', '0.3.1' ); require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php'; OAuth2\Autoloader::register();