Skip to content

Commit

Permalink
Version bump + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Sep 27, 2024
1 parent 51ae3f3 commit 195121c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 0.9.8
- Fix replying on received comments via the ActivityPub plugin ([#176])

### 0.9.7
- Fixed bug where the create post type was ignored ([#175])
- Automatically convert post content to blocks, can be disabled ([#174])
Expand Down Expand Up @@ -127,6 +130,8 @@
- Post replies as comments ([#3])
- Fix a fatal when saving the default post format

[#176]: https://github.com/akirk/enable-mastodon-apps/pull/176
[#175]: https://github.com/akirk/enable-mastodon-apps/pull/175
[#174]: https://github.com/akirk/enable-mastodon-apps/pull/174
[#173]: https://github.com/akirk/enable-mastodon-apps/pull/173
[#171]: https://github.com/akirk/enable-mastodon-apps/pull/171
Expand Down
7 changes: 6 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.6
- Requires PHP: 7.4
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.9.7
- Stable tag: 0.9.8

Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.

Expand Down Expand Up @@ -98,6 +98,9 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi

## Changelog

### 0.9.8
- Fix replying on received comments via the ActivityPub plugin ([#176])

### 0.9.7
- Fixed bug where the create post type was ignored ([#175])
- Automatically convert post content to blocks, can be disabled ([#174])
Expand Down Expand Up @@ -143,6 +146,8 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
- Improves to Attachments ([#132], [#136])
- Fix OAuth rewrite path ([#130])

[#176]: https://github.com/akirk/enable-mastodon-apps/pull/176
[#175]: https://github.com/akirk/enable-mastodon-apps/pull/175
[#174]: https://github.com/akirk/enable-mastodon-apps/pull/174
[#173]: https://github.com/akirk/enable-mastodon-apps/pull/173
[#171]: https://github.com/akirk/enable-mastodon-apps/pull/171
Expand Down
4 changes: 2 additions & 2 deletions enable-mastodon-apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.7
* Version: 0.9.8
*
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
*
Expand All @@ -19,7 +19,7 @@

defined( 'ABSPATH' ) || exit;
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.7' );
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.8' );

require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php';
OAuth2\Autoloader::register();
Expand Down

0 comments on commit 195121c

Please sign in to comment.