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 25, 2024
1 parent e1a5a85 commit a211e36
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down Expand Up @@ -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
Expand Down
26 changes: 11 additions & 15 deletions 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.5
- Stable tag: 0.9.6

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

Expand Down Expand Up @@ -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])
Expand Down Expand Up @@ -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
Expand All @@ -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
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.5
* Version: 0.9.6
*
* 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.5' );
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.6' );

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

0 comments on commit a211e36

Please sign in to comment.