From a12484b1e09ccd23a39854a69211e9b4ed9e0132 Mon Sep 17 00:00:00 2001 From: Tim Carr Date: Mon, 7 Aug 2023 15:49:19 +0100 Subject: [PATCH] 2.2.8 --- languages/convertkit.pot | 4 ++-- readme.txt | 6 +++++- wp-convertkit.php | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/languages/convertkit.pot b/languages/convertkit.pot index 0fa3e173b..7e1f167b6 100644 --- a/languages/convertkit.pot +++ b/languages/convertkit.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the ConvertKit plugin. msgid "" msgstr "" -"Project-Id-Version: ConvertKit 2.2.7\n" +"Project-Id-Version: ConvertKit 2.2.8\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-07-24T12:52:44+00:00\n" +"POT-Creation-Date: 2023-08-07T14:04:35+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.7.1\n" "X-Domain: convertkit\n" diff --git a/readme.txt b/readme.txt index 0badef1dc..db26a3af0 100755 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: email marketing, email newsletter, newsletter, subscribers, membership Requires at least: 5.0 Tested up to: 6.2.2 Requires PHP: 5.6.20 -Stable tag: 2.2.7 +Stable tag: 2.2.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -138,6 +138,10 @@ Full Plugin documentation can be found [here](https://help.convertkit.com/en/art == Changelog == +### 2.2.8 2023-08-07 +* Fix: Use `file_get_contents` instead of `WP_Filesystem` for reading plugin files, to avoid fatal error on activation when file ownership/permission issues occur +* Fix: Block Editor: Prevent block error in WordPress 6.0 and lower by checking if `useAnchor` is available + ### 2.2.7 2023-07-24 * Added: Contact Form 7: Option to Enable Creator Network Recommendations modal on individual Forms at Settings > ConvertKit > Contact Form 7 diff --git a/wp-convertkit.php b/wp-convertkit.php index b894d5281..9430955cb 100644 --- a/wp-convertkit.php +++ b/wp-convertkit.php @@ -9,7 +9,7 @@ * Plugin Name: ConvertKit * Plugin URI: https://convertkit.com/ * Description: Quickly and easily integrate ConvertKit forms into your site. - * Version: 2.2.7 + * Version: 2.2.8 * Author: ConvertKit * Author URI: https://convertkit.com/ * Text Domain: convertkit @@ -25,7 +25,7 @@ define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ ); -define( 'CONVERTKIT_PLUGIN_VERSION', '2.2.7' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '2.2.8' ); // Load shared classes, if they have not been included by another ConvertKit Plugin. if ( ! class_exists( 'ConvertKit_API' ) ) {