Skip to content

Commit f72ac20

Browse files
authored
Merge pull request #1062 from Kit/release-3.2.2.1
3.2.2.1
2 parents b6026c4 + 01794e7 commit f72ac20

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 3.2.2.1 2026-03-30
2+
* Fix: Fatal error: Cannot redeclare trait ConvertKit_API\ConvertKit_API_Traits
3+
14
### 3.2.2 2026-03-30
25
* Fix: Only run `get_subscriber_id_from_request` when viewing Pages with "Add a Tag" configured, to improve performance
36
* Removed: Global `validate_and_store_subscriber_id` method; Custom Content and Member Content functionality performs necessary subscriber ID validation

languages/convertkit.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is distributed under the GPLv3 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Kit (formerly ConvertKit) 3.2.2\n"
5+
"Project-Id-Version: Kit (formerly ConvertKit) 3.2.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2026-03-27T14:34:55+00:00\n"
12+
"POT-Creation-Date: 2026-03-30T09:17:48+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1414
"X-Generator: WP-CLI 2.12.0\n"
1515
"X-Domain: convertkit\n"

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: email marketing, email newsletter, subscribers, landing page, membership
55
Requires at least: 5.6
66
Tested up to: 6.9
77
Requires PHP: 7.1
8-
Stable tag: 3.2.2
8+
Stable tag: 3.2.2.1
99
License: GPLv3 or later
1010
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1111

@@ -343,6 +343,9 @@ The documentation covers newsletter form setup, landing page configuration, memb
343343

344344
== Changelog ==
345345

346+
### 3.2.2.1 2026-03-30
347+
* Fix: Fatal error: Cannot redeclare trait ConvertKit_API\ConvertKit_API_Traits
348+
346349
### 3.2.2 2026-03-30
347350
* Fix: Only run `get_subscriber_id_from_request` when viewing Pages with "Add a Tag" configured, to improve performance
348351
* Removed: Global `validate_and_store_subscriber_id` method; Custom Content and Member Content functionality performs necessary subscriber ID validation

wp-convertkit.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Kit (formerly ConvertKit)
1010
* Plugin URI: https://kit.com/
1111
* Description: Display Kit (formerly ConvertKit) email subscription forms, landing pages, products, broadcasts and more.
12-
* Version: 3.2.2
12+
* Version: 3.2.2.1
1313
* Author: Kit
1414
* Author URI: https://kit.com/
1515
* Text Domain: convertkit
@@ -27,12 +27,12 @@
2727
define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) );
2828
define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
2929
define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ );
30-
define( 'CONVERTKIT_PLUGIN_VERSION', '3.2.2' );
30+
define( 'CONVERTKIT_PLUGIN_VERSION', '3.2.2.1' );
3131
define( 'CONVERTKIT_OAUTH_CLIENT_ID', 'HXZlOCj-K5r0ufuWCtyoyo3f688VmMAYSsKg1eGvw0Y' );
3232
define( 'CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );
3333

3434
// Load shared classes, if they have not been included by another Kit Plugin.
35-
if ( ! trait_exists( 'ConvertKit_API_Traits' ) ) {
35+
if ( ! trait_exists( 'ConvertKit_API\ConvertKit_API_Traits' ) ) {
3636
require_once CONVERTKIT_PLUGIN_PATH . '/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-api-traits.php';
3737
}
3838
if ( ! class_exists( 'ConvertKit_API_V4' ) ) {

0 commit comments

Comments
 (0)