Skip to content

Commit 176149f

Browse files
committed
Version bump + changelog
1 parent eee6b15 commit 176149f

File tree

3 files changed

+35
-5
lines changed

3 files changed

+35
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 0.9.5
2+
- Add a details link to the apps page ([#163])
3+
- Show all comments by others as notifications ([#164])
4+
- Update NodeInfo endpoint by @pfefferle ([#162])
5+
- Multisite: ensure that user_ids only work for users of this site by @mattwiebe ([#158])
6+
- Increase phpcs rules and fix them by @mattwiebe ([#160], [#155])
7+
- Add `api/v1/accounts/update_credentials` route by @mattwiebe ([#157])
8+
19
### 0.9.4
210
- Added a dedicated page per app in the settings. There you can set which post types should be shown in the app. Also which post type should be created for new posts. ([#154])
311
- Fixed authenticating Jetpack so that you can connect WordPress.com to this plugin ([#152])
@@ -108,6 +116,13 @@
108116
- Post replies as comments ([#3])
109117
- Fix a fatal when saving the default post format
110118

119+
[#163]: https://github.com/akirk/enable-mastodon-apps/pull/163
120+
[#164]: https://github.com/akirk/enable-mastodon-apps/pull/164
121+
[#162]: https://github.com/akirk/enable-mastodon-apps/pull/162
122+
[#160]: https://github.com/akirk/enable-mastodon-apps/pull/160
123+
[#158]: https://github.com/akirk/enable-mastodon-apps/pull/158
124+
[#157]: https://github.com/akirk/enable-mastodon-apps/pull/157
125+
[#155]: https://github.com/akirk/enable-mastodon-apps/pull/155
111126
[#154]: https://github.com/akirk/enable-mastodon-apps/pull/154
112127
[#152]: https://github.com/akirk/enable-mastodon-apps/pull/152
113128
[#150]: https://github.com/akirk/enable-mastodon-apps/pull/150

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
- Contributors: akirk, pfefferle, drivingralle, kittmedia, obenland
44
- Tags: mastodon, activitypub, friends, fediverse
55
- Requires at least: 5.0
6-
- Tested up to: 6.5
6+
- 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.4
9+
- Stable tag: 0.9.5
1010

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

@@ -58,6 +58,7 @@ Here is a list of endpoints and their implementation status:
5858
- [ ] `GET /api/v1/lists` (implemented as empty)
5959
- [ ] `GET /api/v1/custom_emojis` (implemented as empty) [View all custom emojis](https://docs.joinmastodon.org/methods/custom_emojis/#get)
6060
- [x] `GET /api/v1/accounts/verify_credentials` [Verify account credentials](https://docs.joinmastodon.org/methods/accounts/#verify_credentials)
61+
- [x] `PATCH /api/v1/accounts/update_credentials` [Update account credentials](https://docs.joinmastodon.org/methods/accounts/#update_credentials)
6162
- [x] `GET /api/v1/accounts/:id` [Get account](https://docs.joinmastodon.org/methods/accounts/#get)
6263
- [x] `GET /api/v1/accounts/:id/statuses` [Get account’s statuses](https://docs.joinmastodon.org/methods/accounts/statuses/#get)
6364
- [x] `GET /api/v1/accounts/:id/followers` [Get account’s followers](https://docs.joinmastodon.org/methods/accounts/#followers)
@@ -97,6 +98,14 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
9798

9899
## Changelog
99100

101+
### 0.9.5
102+
- Add a details link to the apps page ([#163])
103+
- Show all comments by others as notifications ([#164])
104+
- Update NodeInfo endpoint by @pfefferle ([#162])
105+
- Multisite: ensure that user_ids only work for users of this site by @mattwiebe ([#158])
106+
- Increase phpcs rules and fix them by @mattwiebe ([#160], [#155])
107+
- Add `api/v1/accounts/update_credentials` route by @mattwiebe ([#157])
108+
100109
### 0.9.4
101110
- Added a dedicated page per app in the settings. There you can set which post types should be shown in the app. Also which post type should be created for new posts. ([#154])
102111
- Fixed authenticating Jetpack so that you can connect WordPress.com to this plugin ([#152])
@@ -133,7 +142,13 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
133142
### 0.6.4
134143
- Address an incompatibility with the IndieAuth plugin ([#65])
135144

136-
145+
[#163]: https://github.com/akirk/enable-mastodon-apps/pull/163
146+
[#164]: https://github.com/akirk/enable-mastodon-apps/pull/164
147+
[#162]: https://github.com/akirk/enable-mastodon-apps/pull/162
148+
[#160]: https://github.com/akirk/enable-mastodon-apps/pull/160
149+
[#158]: https://github.com/akirk/enable-mastodon-apps/pull/158
150+
[#157]: https://github.com/akirk/enable-mastodon-apps/pull/157
151+
[#155]: https://github.com/akirk/enable-mastodon-apps/pull/155
137152
[#154]: https://github.com/akirk/enable-mastodon-apps/pull/154
138153
[#152]: https://github.com/akirk/enable-mastodon-apps/pull/152
139154
[#150]: https://github.com/akirk/enable-mastodon-apps/pull/150

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.4
6+
* Version: 0.9.5
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.4' );
22+
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.5' );
2323

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

0 commit comments

Comments
 (0)