Skip to content

Commit 461f50f

Browse files
committed
Changelog + Version bump
1 parent f3e3042 commit 461f50f

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.9.9
2+
- Improve targeting of CORS headers ([#181])
3+
- Fix fatal when deleting an app ([#182])
4+
15
### 0.9.8
26
- Fix replying on received comments via the ActivityPub plugin ([#176])
37

@@ -130,6 +134,8 @@
130134
- Post replies as comments ([#3])
131135
- Fix a fatal when saving the default post format
132136

137+
[#182]: https://github.com/akirk/enable-mastodon-apps/pull/182
138+
[#181]: https://github.com/akirk/enable-mastodon-apps/pull/181
133139
[#176]: https://github.com/akirk/enable-mastodon-apps/pull/176
134140
[#175]: https://github.com/akirk/enable-mastodon-apps/pull/175
135141
[#174]: https://github.com/akirk/enable-mastodon-apps/pull/174

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Tested up to: 6.6
77
- Requires PHP: 7.4
88
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
9-
- Stable tag: 0.9.8
9+
- Stable tag: 0.9.9
1010

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

@@ -98,6 +98,10 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
9898

9999
## Changelog
100100

101+
### 0.9.9
102+
- Improve targeting of CORS headers ([#181])
103+
- Fix fatal when deleting an app ([#182])
104+
101105
### 0.9.8
102106
- Fix replying on received comments via the ActivityPub plugin ([#176])
103107

@@ -146,6 +150,8 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
146150
- Improves to Attachments ([#132], [#136])
147151
- Fix OAuth rewrite path ([#130])
148152

153+
[#182]: https://github.com/akirk/enable-mastodon-apps/pull/182
154+
[#181]: https://github.com/akirk/enable-mastodon-apps/pull/181
149155
[#176]: https://github.com/akirk/enable-mastodon-apps/pull/176
150156
[#175]: https://github.com/akirk/enable-mastodon-apps/pull/175
151157
[#174]: https://github.com/akirk/enable-mastodon-apps/pull/174

enable-mastodon-apps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin name: Enable Mastodon Apps
44
* Plugin author: Alex Kirk
55
* Plugin URI: https://github.com/akirk/enable-mastodon-apps
6-
* Version: 0.9.8
6+
* Version: 0.9.9
77
*
88
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
99
*
@@ -19,7 +19,7 @@
1919

2020
defined( 'ABSPATH' ) || exit;
2121
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
22-
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.8' );
22+
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.9' );
2323

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

0 commit comments

Comments
 (0)