From 9e6a7fadbaf987c435a9a5dac690e5f6ebff3340 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Thu, 20 Jan 2022 16:33:27 +0100 Subject: [PATCH] Version bump --- README.md | 1 + friends.php | 2 +- includes/class-friends.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 36264add..2178cd3e 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ There is a cache of your friends post in form of a Custom Post Type friend_post ### 1.9.0 - New feature: Keyword Matcher (get a notification if an incoming post contains keywords you can specify) - New feature: Automatic status posts (automatically create draft status posts for certain events, they need to be published manually) +- Disable Gutenberg in messages until Gutenberg-Everywhere has been fixed ### 1.8.5 - Multisite: fix adding user to site instead of requiring a new username diff --git a/friends.php b/friends.php index ba27bd6e..1320264a 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: 1.8.5 + * Version: 1.9.0 * * Description: Decentralized Social Networking with WordPress. Connect WordPresses through friend requests and read each other’s (private) posts in a feed reader. * diff --git a/includes/class-friends.php b/includes/class-friends.php index e71ddb7a..71f864d9 100644 --- a/includes/class-friends.php +++ b/includes/class-friends.php @@ -14,7 +14,7 @@ * @author Alex Kirk */ class Friends { - const VERSION = '1.8.5'; + const VERSION = '1.9.0'; const CPT = 'friend_post_cache'; const FEED_URL = 'friends-feed-url'; const PLUGIN_URL = 'https://wordpress.org/plugins/friends/';