Skip to content

Commit

Permalink
Version bump + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Feb 28, 2025
1 parent fc029df commit a648b4d
Show file tree
Hide file tree
Showing 3 changed files with 29 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 @@
### 1.3.0
- Fix small errors on app page ([#224])
- Show internal CPTs if debug is turned on ([#223])
- Add setting for a default post format ([#221])
- Improve New Post Setting and explicit set a New post format ([#220], [#222])
- Assign all post formats to EMA announcements ([#218])

### 1.2.1
- Fixed Boost, Like and Comment notifications ([#216])
- Announce Initial and Changed App Settings ([#207], [#214])
Expand Down Expand Up @@ -162,6 +169,12 @@
- Post replies as comments ([#3])
- Fix a fatal when saving the default post format

[#224]: https://github.com/akirk/enable-mastodon-apps/pull/224
[#223]: https://github.com/akirk/enable-mastodon-apps/pull/223
[#222]: https://github.com/akirk/enable-mastodon-apps/pull/222
[#221]: https://github.com/akirk/enable-mastodon-apps/pull/221
[#220]: https://github.com/akirk/enable-mastodon-apps/pull/220
[#218]: https://github.com/akirk/enable-mastodon-apps/pull/218
[#216]: https://github.com/akirk/enable-mastodon-apps/pull/216
[#214]: https://github.com/akirk/enable-mastodon-apps/pull/214
[#215]: https://github.com/akirk/enable-mastodon-apps/pull/215
Expand Down
15 changes: 14 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: 1.2.1
- Stable tag: 1.3.0

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

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

## Changelog

### 1.3.0
- Fix small errors on app page ([#224])
- Show internal CPTs if debug is turned on ([#223])
- Add setting for a default post format ([#221])
- Improve New Post Setting and explicit set a New post format ([#220], [#222])
- Assign all post formats to EMA announcements ([#218])

### 1.2.1
- Fixed Boost, Like and Comment notifications ([#216])
- Announce Initial and Changed App Settings ([#207], [#214])
Expand Down Expand Up @@ -180,6 +187,12 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi
- Improves to Attachments ([#132], [#136])
- Fix OAuth rewrite path ([#130])

[#224]: https://github.com/akirk/enable-mastodon-apps/pull/224
[#223]: https://github.com/akirk/enable-mastodon-apps/pull/223
[#222]: https://github.com/akirk/enable-mastodon-apps/pull/222
[#221]: https://github.com/akirk/enable-mastodon-apps/pull/221
[#220]: https://github.com/akirk/enable-mastodon-apps/pull/220
[#218]: https://github.com/akirk/enable-mastodon-apps/pull/218
[#216]: https://github.com/akirk/enable-mastodon-apps/pull/216
[#214]: https://github.com/akirk/enable-mastodon-apps/pull/214
[#215]: https://github.com/akirk/enable-mastodon-apps/pull/215
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: 1.2.1
* Version: 1.3.0
*
* Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
*
Expand All @@ -20,7 +20,7 @@
defined( 'ABSPATH' ) || exit;
define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'ENABLE_MASTODON_APPS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'ENABLE_MASTODON_APPS_VERSION', '1.2.1' );
define( 'ENABLE_MASTODON_APPS_VERSION', '1.3.0' );

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

0 comments on commit a648b4d

Please sign in to comment.