diff --git a/CHANGELOG.md b/CHANGELOG.md index 262e9a9..f83f820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### 0.9.6 +- Adds steaming_api to instance_v1, props @mediaformat ([#171]) +- PATCH routes: support field_attributes, props @mattwiebe ([#167]) +- Make token storage taxonomies private, props @mattwiebe ([#165]) +- Updated tester.html from upstream +- Introduce a Never Used label to the registered apps screen. + ### 0.9.5 - Add a details link to the apps page ([#163]) - Show all comments by others as notifications ([#164]) @@ -116,6 +123,9 @@ - Post replies as comments ([#3]) - Fix a fatal when saving the default post format +[#171]: https://github.com/akirk/enable-mastodon-apps/pull/171 +[#167]: https://github.com/akirk/enable-mastodon-apps/pull/167 +[#165]: https://github.com/akirk/enable-mastodon-apps/pull/165 [#163]: https://github.com/akirk/enable-mastodon-apps/pull/163 [#164]: https://github.com/akirk/enable-mastodon-apps/pull/164 [#162]: https://github.com/akirk/enable-mastodon-apps/pull/162 diff --git a/README.md b/README.md index 5db9db5..277ed42 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.6 - Requires PHP: 7.4 - License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 0.9.5 +- Stable tag: 0.9.6 Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. @@ -98,6 +98,13 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi ## Changelog +### 0.9.6 +- Adds steaming_api to instance_v1, props @mediaformat ([#171]) +- PATCH routes: support field_attributes, props @mattwiebe ([#167]) +- Make token storage taxonomies private, props @mattwiebe ([#165]) +- Updated tester.html from upstream +- Introduce a Never Used label to the registered apps screen. + ### 0.9.5 - Add a details link to the apps page ([#163]) - Show all comments by others as notifications ([#164]) @@ -132,16 +139,9 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi - Improves to Attachments ([#132], [#136]) - Fix OAuth rewrite path ([#130]) -### 0.6.6 -- Implement Autoloader ([#73]) -- Add scope adherence ([#76]) - -### 0.6.5 -- Fix missing image attachments for WordPress posts, props @thatguygriff ([#72]) - -### 0.6.4 -- Address an incompatibility with the IndieAuth plugin ([#65]) - +[#171]: https://github.com/akirk/enable-mastodon-apps/pull/171 +[#167]: https://github.com/akirk/enable-mastodon-apps/pull/167 +[#165]: https://github.com/akirk/enable-mastodon-apps/pull/165 [#163]: https://github.com/akirk/enable-mastodon-apps/pull/163 [#164]: https://github.com/akirk/enable-mastodon-apps/pull/164 [#162]: https://github.com/akirk/enable-mastodon-apps/pull/162 @@ -163,7 +163,3 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi [#136]: https://github.com/akirk/enable-mastodon-apps/pull/136 [#132]: https://github.com/akirk/enable-mastodon-apps/pull/132 [#130]: https://github.com/akirk/enable-mastodon-apps/pull/130 -[#73]: https://github.com/akirk/enable-mastodon-apps/pull/73 -[#76]: https://github.com/akirk/enable-mastodon-apps/pull/76 -[#72]: https://github.com/akirk/enable-mastodon-apps/pull/72 -[#65]: https://github.com/akirk/enable-mastodon-apps/pull/65 diff --git a/enable-mastodon-apps.php b/enable-mastodon-apps.php index 776985f..6b514df 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.9.5 + * Version: 0.9.6 * * Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. * @@ -19,7 +19,7 @@ defined( 'ABSPATH' ) || exit; define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.5' ); +define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.6' ); require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php'; OAuth2\Autoloader::register();