diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index a7adfb48..31e74a31 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -35,7 +35,7 @@ jobs: # Defines the WordPress and PHP Versions matrix to run tests on. strategy: matrix: - wp-versions: [ '6.7-RC4' ] #[ '6.1.1', 'latest' ] + wp-versions: [ 'latest' ] #[ '6.1.1', 'latest' ] php-versions: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] #[ '7.3', '7.4', '8.0', '8.1' ] # Steps to install, configure and run tests diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 243db911..b8a65247 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -54,7 +54,7 @@ jobs: strategy: fail-fast: false matrix: - wp-versions: [ '6.7-RC4' ] #[ '6.1.1', 'latest' ] + wp-versions: [ 'latest' ] #[ '6.1.1', 'latest' ] php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ] #[ '7.4', '8.0', '8.1' ] # Folder names within the 'tests' folder to run tests in parallel. diff --git a/languages/convertkit.pot b/languages/convertkit.pot index 8142cf54..9d5a0d43 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.4\n" +"Project-Id-Version: Kit (formerly ConvertKit) 2.6.5\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-05T03:11:09+00:00\n" +"POT-Creation-Date: 2024-11-13T02:19:55+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 60669f83..af58ec0c 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 Requires PHP: 5.6.20 -Stable tag: 2.6.4 +Stable tag: 2.6.5 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -159,6 +159,11 @@ Full Plugin documentation can be found [here](https://help.kit.com/en/articles/2 == Changelog == +### 2.6.5 2024-11-13 +* Added: OAuth: Issue site-specific Access and Refresh Token when using the same Kit account on multiple WordPress sites +* Fix: Exclude Forms from WP Rocket Minification and Combine +* Updated: ConvertKit WordPress Libraries to 2.0.5 + ### 2.6.4 2024-11-05 * Added: Settings: Broadcasts: Option to import images to the WordPress Media Library when importing Broadcasts to WordPress Posts * Added: Broadcasts: Remove heading title from content when it matches the Broadcast's title diff --git a/wp-convertkit.php b/wp-convertkit.php index 64b8dd6d..24ab686c 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.4 + * Version: 2.6.5 * 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.4' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '2.6.5' ); define( 'CONVERTKIT_OAUTH_CLIENT_ID', 'HXZlOCj-K5r0ufuWCtyoyo3f688VmMAYSsKg1eGvw0Y' ); define( 'CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );