From 9316abcbcea5d909ead1103d35fa0b35628f8a58 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Fri, 4 Oct 2024 15:51:37 +0200 Subject: [PATCH] Changelog + Version bump --- CHANGELOG.md | 12 ++++++++++++ README.md | 14 +++++++++++++- friends.php | 4 ++-- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb542875..bf873ed6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### 3.0.0 +- Show Mutual Followers and allow removing of followers ([#359]) +- Add an e-mail notification for new and lost followers ([#358]) +- Add the ability to disable notifications per post format and feed parser ([#357]) +- Fix 404 on the New private post widget props @liviacarolgouvea ([#361]) +- Improve ghost.org ActivityPub compatibility ([#356]) + ### 2.9.9 - Avoid fatal when no user login can be found during boosting ([#355]) - A small update of a filter for Enable Mastodon Apps 0.9.8 @@ -242,6 +249,11 @@ - PHP: Introduced a namespace, changed the plugin hooks to friends_loaded and friends_load_parsers - Add checks for diagnosing the correct functioning to Site Health +[#359]: https://github.com/akirk/friends/pull/359 +[#358]: https://github.com/akirk/friends/pull/358 +[#357]: https://github.com/akirk/friends/pull/357 +[#361]: https://github.com/akirk/friends/pull/361 +[#356]: https://github.com/akirk/friends/pull/356 [#355]: https://github.com/akirk/friends/pull/355 [#354]: https://github.com/akirk/friends/pull/354 [#353]: https://github.com/akirk/friends/pull/353 diff --git a/README.md b/README.md index 99adeda4..7c6ad831 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - Requires at least: 5.0 - Tested up to: 6.6 - License: GPL-2.0-or-later -- Stable tag: 2.9.9 +- Stable tag: 3.0.0 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -96,6 +96,13 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 3.0.0 +- Show Mutual Followers and allow removing of followers ([#359]) +- Add an e-mail notification for new and lost followers ([#358]) +- Add the ability to disable notifications per post format and feed parser ([#357]) +- Fix 404 on the New private post widget props @liviacarolgouvea ([#361]) +- Improve ghost.org ActivityPub compatibility ([#356]) + ### 2.9.9 - Avoid fatal when no user login can be found during boosting ([#355]) - A small update of a filter for Enable Mastodon Apps 0.9.8 @@ -129,6 +136,11 @@ There is a cache of your friends post in form of a Custom Post Type friend_post - Fix the all postids query ([#335]) - Don't define a wp-editor dependency ([#332]) +[#359]: https://github.com/akirk/friends/pull/359 +[#358]: https://github.com/akirk/friends/pull/358 +[#357]: https://github.com/akirk/friends/pull/357 +[#361]: https://github.com/akirk/friends/pull/361 +[#356]: https://github.com/akirk/friends/pull/356 [#355]: https://github.com/akirk/friends/pull/355 [#354]: https://github.com/akirk/friends/pull/354 [#353]: https://github.com/akirk/friends/pull/353 diff --git a/friends.php b/friends.php index cbf9cace..ccb449f5 100644 --- a/friends.php +++ b/friends.php @@ -3,7 +3,7 @@ * Plugin name: Friends * Plugin author: Alex Kirk * Plugin URI: https://github.com/akirk/friends - * Version: 2.9.9 + * Version: 3.0.0 * Requires PHP: 5.6 * Description: A social network between WordPresses. Privacy focused, by itself a self-hosted RSS++ reader with notifications. @@ -25,7 +25,7 @@ define( 'FRIENDS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'FRIENDS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); define( 'FRIENDS_PLUGIN_FILE', plugin_dir_path( __FILE__ ) . '/' . basename( __FILE__ ) ); -define( 'FRIENDS_VERSION', '2.9.9' ); +define( 'FRIENDS_VERSION', '3.0.0' ); require_once __DIR__ . '/libs/Mf2/Parser.php';