diff --git a/package.json b/package.json index 95ac1931d..c519b5e6e 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "title": "ConvertKit", "author": "ConvertKit", "license": "GPL-2.0", - "version": "1.6.2", + "version": "1.6.3", "description": "", "homepage": "https://github.com/convertkit/ConvertKit-WordPress", "main": "Gruntfile.js", diff --git a/readme.txt b/readme.txt index 7606389ad..396add9fa 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://convertkit.com Tags: email, marketing, embed form, convertkit, capture Requires at least: 3.6 Tested up to: 4.9.7 -Stable tag: 1.6.2 +Stable tag: 1.6.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -46,6 +46,10 @@ Yes, for it to work you must first have an account on ConvertKit.com == Changelog == +### 1.6.3 2019-01-07 +* Fixes issues with Contact Form 7 integration not saving form settings. +* Adds button to refresh on settings page, to fetch new forms added to the connected ConvertKit account. + ### 1.6.2 2018-07-12 * Fix for this message when Landing Page is set to None: PHP Notice: Undefined offset: 0 * Fix for new form builder being used in shortcode with "form" attribute instead of "id" diff --git a/wp-convertkit.php b/wp-convertkit.php index 20a67798e..6406fc2e9 100644 --- a/wp-convertkit.php +++ b/wp-convertkit.php @@ -3,7 +3,7 @@ * Plugin Name: ConvertKit * Plugin URI: https://convertkit.com/ * Description: Quickly and easily integrate ConvertKit forms into your site. - * Version: 1.6.2 + * Version: 1.6.3 * Author: ConvertKit * Author URI: https://convertkit.com/ * Text Domain: convertkit @@ -16,7 +16,7 @@ define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); -define( 'CONVERTKIT_PLUGIN_VERSION', '1.6.2' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '1.6.3' ); require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit.php'; require_once CONVERTKIT_PLUGIN_PATH . '/includes/class-convertkit-api.php';