diff --git a/languages/convertkit.pot b/languages/convertkit.pot index a97b345f4..8165f0826 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.0.1\n" +"Project-Id-Version: ConvertKit 2.0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit-github\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: 2022-11-01T12:04:42+00:00\n" +"POT-Creation-Date: 2022-11-21T13:00:53+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: convertkit\n" diff --git a/readme.txt b/readme.txt index 684315811..5b8d41d5d 100755 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: nathanbarry, growdev, travisnorthcutt, ggwicz Donate link: https://convertkit.com Tags: email marketing, email newsletter, newsletter, convertkit Requires at least: 5.0 -Tested up to: 6.1 +Tested up to: 6.1.1 Requires PHP: 5.6.20 -Stable tag: 2.0.1 +Stable tag: 2.0.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -117,6 +117,9 @@ Full Plugin documentation can be found [here](https://help.convertkit.com/en/art == Changelog == +### 2.0.2 2022-11-21 +* Fixed: Removed argument count on `in_admin_footer` action calls + ### 2.0.1 2022-11-01 * Added: Broadcasts: Block: Display message in editor when no Broadcasts exist in ConvertKit * Fixed: Settings: Contact Form 7: Render screen correctly when no Forms in ConvertKit diff --git a/wp-convertkit.php b/wp-convertkit.php index 4e7c801aa..0cf51ef1e 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.0.1 + * Version: 2.0.2 * 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.0.1' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '2.0.2' ); // Load shared classes, if they have not been included by another ConvertKit Plugin. if ( ! class_exists( 'ConvertKit_API' ) ) {