Contact Form 7 – reCaptcha v2 - Version 1.4.0

Version Description

(2022-06-01) = * Updated supported version for WordPress 6.0

Download this release

Release Info

Developer IQComputing
Plugin Icon 128x128 Contact Form 7 – reCaptcha v2
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.9 to 1.4.0

Files changed (3) hide show
  1. changelog.txt +7 -0
  2. readme.txt +6 -7
  3. wpcf7-recaptcha.php +2 -2
changelog.txt CHANGED
@@ -2,6 +2,13 @@
2
 
3
  This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3.
4
 
 
 
 
 
 
 
 
5
  = 1.3.9 =
6
 
7
  Release Date: April 13, 2022
2
 
3
  This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3.
4
 
5
+ = 1.4.0 =
6
+
7
+ Release Date: June 01, 2022
8
+
9
+ * Overview
10
+ * Updated "Tested up to" version for WordPress 6.0 branch.
11
+
12
  = 1.3.9 =
13
 
14
  Release Date: April 13, 2022
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: iqcomputing
3
  Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
4
  Requires at least: 4.9
5
- Tested up to: 5.8
6
- Stable tag: 1.3.9
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -60,12 +60,11 @@ Should the above be correct, at this point it's time to open a support thread fo
60
 
61
  == Changelog ==
62
 
 
 
 
63
  = 1.3.9 (2022-04-13) =
64
  * Using `wp_is_block_theme()` to conditionally test if Google ReCaptcha script should be enqueued globally or inline.
65
 
66
  = 1.3.8 (2022-03-07) =
67
- * New global reCaptcha Locale filter hook `wpcf7_recaptcha_locale`.
68
-
69
- = 1.3.7 (2022-01-03) =
70
- * Happy New Year!
71
- * Fixed issue with reCpatcha not appearing in the new WordPress Full Site Editing feature of TwentyTwentyTwo theme. Thanks @gerhardfasol !
2
  Contributors: iqcomputing
3
  Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
4
  Requires at least: 4.9
5
+ Tested up to: 6.0
6
+ Stable tag: 1.4.0
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
60
 
61
  == Changelog ==
62
 
63
+ = 1.4.0 (2022-06-01) =
64
+ * Updated supported version for WordPress 6.0
65
+
66
  = 1.3.9 (2022-04-13) =
67
  * Using `wp_is_block_theme()` to conditionally test if Google ReCaptcha script should be enqueued globally or inline.
68
 
69
  = 1.3.8 (2022-03-07) =
70
+ * New global reCaptcha Locale filter hook `wpcf7_recaptcha_locale`.
 
 
 
 
wpcf7-recaptcha.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: ReCaptcha v2 for Contact Form 7
4
  * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
5
- * Version: 1.3.9
6
  * Author: IQComputing
7
  * Author URI: http://www.iqcomputing.com/
8
  * License: GPL2
@@ -24,7 +24,7 @@ Class IQFix_WPCF7_Deity {
24
  *
25
  * @var String
26
  */
27
- public static $version = '1.3.8';
28
 
29
 
30
  /**
2
  /**
3
  * Plugin Name: ReCaptcha v2 for Contact Form 7
4
  * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
5
+ * Version: 1.4.0
6
  * Author: IQComputing
7
  * Author URI: http://www.iqcomputing.com/
8
  * License: GPL2
24
  *
25
  * @var String
26
  */
27
+ public static $version = '1.4.0';
28
 
29
 
30
  /**