Skip to content

Commit

Permalink
Version bump + Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Jun 12, 2024
1 parent 20f13c8 commit de6f026
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.9.1
- Allow an empty search type, to search in all categories ([#150]) props @pfefferle
- Don't reactivate the Link Manager ([#148])
- Avoid errors when dividing strings ([#147]) props @mattwiebe
- Don't include spam comments in the feed ([#149])
- Ensure no spaces in URLs ([#144])
- Fix some typos on the Welcome Screen ([#143])

### 0.9.0
- Complete Rewrite, started at the Cloudfest Hackathon! Props @pfefferle, @drivingralle, @kittmedia, @obenland
Expand Down Expand Up @@ -91,6 +98,12 @@
- Post replies as comments ([#3])
- Fix a fatal when saving the default post format

[#150]: https://github.com/akirk/enable-mastodon-apps/pull/150
[#148]: https://github.com/akirk/enable-mastodon-apps/pull/148
[#147]: https://github.com/akirk/enable-mastodon-apps/pull/147
[#149]: https://github.com/akirk/enable-mastodon-apps/pull/149
[#144]: https://github.com/akirk/enable-mastodon-apps/pull/144
[#143]: https://github.com/akirk/enable-mastodon-apps/pull/143
[#140]: https://github.com/akirk/enable-mastodon-apps/pull/140
[#138]: https://github.com/akirk/enable-mastodon-apps/pull/138
[#137]: https://github.com/akirk/enable-mastodon-apps/pull/137
Expand Down
16 changes: 15 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.5
- Requires PHP: 7.4
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 0.9.0
- Stable tag: 0.9.1

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

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

## Changelog

### 0.9.1
- Allow an empty search type, to search in all categories ([#150]) props @pfefferle
- Don't reactivate the Link Manager ([#148])
- Avoid errors when dividing strings ([#147]) props @mattwiebe
- Don't include spam comments in the feed ([#149])
- Ensure no spaces in URLs ([#144])
- Fix some typos on the Welcome Screen ([#143])

### 0.9.0
- Complete Rewrite, started at the Cloudfest Hackathon! Props @pfefferle, @drivingralle, @kittmedia, @obenland
- Thus: all ActivityPub related tasks are handled by the ActivityPub plugin, all following-related tasks by the Friends plugin. Please make sure you have the latest version of those plugins if you want to use such features
Expand All @@ -116,6 +124,12 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
- Address an incompatibility with the IndieAuth plugin ([#65])


[#150]: https://github.com/akirk/enable-mastodon-apps/pull/150
[#148]: https://github.com/akirk/enable-mastodon-apps/pull/148
[#147]: https://github.com/akirk/enable-mastodon-apps/pull/147
[#149]: https://github.com/akirk/enable-mastodon-apps/pull/149
[#144]: https://github.com/akirk/enable-mastodon-apps/pull/144
[#143]: https://github.com/akirk/enable-mastodon-apps/pull/143
[#140]: https://github.com/akirk/enable-mastodon-apps/pull/140
[#138]: https://github.com/akirk/enable-mastodon-apps/pull/138
[#137]: https://github.com/akirk/enable-mastodon-apps/pull/137
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.0
* Version: 0.9.1
*
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
*
Expand All @@ -15,7 +15,7 @@

defined( 'ABSPATH' ) || exit;
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.0' );
define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.1' );

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

0 comments on commit de6f026

Please sign in to comment.