diff --git a/languages/convertkit.pot b/languages/convertkit.pot index 679643fe..70f9d725 100644 --- a/languages/convertkit.pot +++ b/languages/convertkit.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Kit (formerly ConvertKit) plugin. msgid "" msgstr "" -"Project-Id-Version: Kit (formerly ConvertKit) 2.6.6\n" +"Project-Id-Version: Kit (formerly ConvertKit) 2.6.7\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: 2024-11-27T23:42:04+00:00\n" +"POT-Creation-Date: 2024-12-04T00:40:21+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: convertkit\n" diff --git a/readme.txt b/readme.txt index 0a396880..a36d344d 100755 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: email marketing, email newsletter, subscribers, block, form Requires at least: 5.0 Tested up to: 6.7.1 Requires PHP: 5.6.20 -Stable tag: 2.6.6 +Stable tag: 2.6.7 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -159,6 +159,9 @@ Full Plugin documentation can be found [here](https://help.kit.com/en/articles/2 == Changelog == +### 2.6.7 2024-12-04 +* Removed: `convertkit_store_subscriber_id_in_cookie` AJAX call, as logic exists server side + ### 2.6.6 2024-11-27 * Added: Categories: `None` option added to specify no Form displays on Posts assigned to the Category * Added: Honor Block Visibility Plugin's conditions when used on a Kit Form block set to output a non-inline Form diff --git a/wp-convertkit.php b/wp-convertkit.php index 8962abc9..e5de6b39 100644 --- a/wp-convertkit.php +++ b/wp-convertkit.php @@ -9,7 +9,7 @@ * Plugin Name: Kit (formerly ConvertKit) * Plugin URI: https://kit.com/ * Description: Display Kit (formerly ConvertKit) email subscription forms, landing pages, products, broadcasts and more. - * Version: 2.6.6 + * Version: 2.6.7 * Author: Kit * Author URI: https://kit.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.6.6' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '2.6.7' ); define( 'CONVERTKIT_OAUTH_CLIENT_ID', 'HXZlOCj-K5r0ufuWCtyoyo3f688VmMAYSsKg1eGvw0Y' ); define( 'CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );