diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c52154..70e1d81c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 2.9.7 +- Fix boost button ([#353]) + ### 2.9.6 - Allow creating multiple dashboard widgets in ([#349]) - Add support for double-encoded HTML entities in RSS in ([#352]) @@ -232,6 +235,7 @@ - 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 +[#353]: https://github.com/akirk/friends/pull/353 [#349]: https://github.com/akirk/friends/pull/349 [#352]: https://github.com/akirk/friends/pull/352 [#351]: https://github.com/akirk/friends/pull/351 diff --git a/README.md b/README.md index 99e1f6e6..4a0989a3 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.6 +- Stable tag: 2.9.7 Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs. @@ -96,6 +96,9 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ## Changelog +### 2.9.7 +- Fix boost button ([#353]) + ### 2.9.6 - Allow creating multiple dashboard widgets in ([#349]) - Add support for double-encoded HTML entities in RSS in ([#352]) @@ -119,6 +122,7 @@ 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]) +[#353]: https://github.com/akirk/friends/pull/353 [#349]: https://github.com/akirk/friends/pull/349 [#352]: https://github.com/akirk/friends/pull/352 [#351]: https://github.com/akirk/friends/pull/351 diff --git a/friends.php b/friends.php index a373c1c9..68ce110d 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.6 + * Version: 2.9.7 * 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.6' ); +define( 'FRIENDS_VERSION', '2.9.7' ); require_once __DIR__ . '/libs/Mf2/Parser.php';