WooCommerce Google Analytics Integration - Version 1.5.1

Version Description

  • 2021-02-03 =
  • Tweak - WC 5.0 compatibility.
Download this release

Release Info

Developer automattic
Plugin Icon 128x128 WooCommerce Google Analytics Integration
Version 1.5.1
Comparing to
See all releases

Code changes from version 1.5.0 to 1.5.1

changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  *** Changelog ***
2
 
 
 
 
3
  = 1.5.0 - 2020-12-17 =
4
  * Add - Option to use Global Site Tag and the gtag.js library (for Universal Analytics or Google Analytics 4).
5
  * Add - Several new values added to the Tracker data.
1
  *** Changelog ***
2
 
3
+ = 1.5.1 - 2021-02-03 =
4
+ * Tweak - WC 5.0 compatibility.
5
+
6
  = 1.5.0 - 2020-12-17 =
7
  * Add - Option to use Global Site Tag and the gtag.js library (for Universal Analytics or Google Analytics 4).
8
  * Add - Several new values added to the Tracker data.
languages/woocommerce-google-analytics-integration.pot CHANGED
@@ -1,16 +1,16 @@
1
- # Copyright (C) 2020 WooCommerce
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Google Analytics Integration 1.5.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-google-analytics-"
8
  "integration\n"
9
- "POT-Creation-Date: 2020-12-17 15:40:15+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
  "X-Generator: node-wp-i18n 1.2.3\n"
1
+ # Copyright (C) 2021 WooCommerce
2
  # This file is distributed under the GPLv2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Google Analytics Integration 1.5.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-google-analytics-"
8
  "integration\n"
9
+ "POT-Creation-Date: 2021-02-03 02:48:20+00:00\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=utf-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
  "X-Generator: node-wp-i18n 1.2.3\n"
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: woocommerce, automattic, claudiosanches, bor0, royho, laurendaviss
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.9
5
  Tested up to: 5.6
6
- Stable tag: 1.5.0
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -60,6 +60,9 @@ Exact wording depends on the national data privacy laws and should be adjusted.
60
 
61
  == Changelog ==
62
 
 
 
 
63
  = 1.5.0 - 2020-12-17 =
64
  * Add - Option to use Global Site Tag and the gtag.js library (for Universal Analytics or Google Analytics 4).
65
  * Add - Several new values added to the Tracker data.
3
  Tags: woocommerce, google analytics
4
  Requires at least: 3.9
5
  Tested up to: 5.6
6
+ Stable tag: 1.5.1
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
60
 
61
  == Changelog ==
62
 
63
+ = 1.5.1 - 2021-02-03 =
64
+ * Tweak - WC 5.0 compatibility.
65
+
66
  = 1.5.0 - 2020-12-17 =
67
  * Add - Option to use Global Site Tag and the gtag.js library (for Universal Analytics or Google Analytics 4).
68
  * Add - Several new values added to the Tracker data.
woocommerce-google-analytics-integration.php CHANGED
@@ -5,9 +5,9 @@
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
- * Version: 1.5.0
9
  * WC requires at least: 3.2
10
- * WC tested up to: 4.7
11
  * Tested up to: 5.6
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
- define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.0' ); // WRCS: DEFINED_VERSION.
24
 
25
  /**
26
  * WooCommerce Google Analytics Integration main class.
5
  * Description: Allows Google Analytics tracking code to be inserted into WooCommerce store pages.
6
  * Author: WooCommerce
7
  * Author URI: https://woocommerce.com
8
+ * Version: 1.5.1
9
  * WC requires at least: 3.2
10
+ * WC tested up to: 5.0
11
  * Tested up to: 5.6
12
  * License: GPLv2 or later
13
  * Text Domain: woocommerce-google-analytics-integration
20
 
21
  if ( ! class_exists( 'WC_Google_Analytics_Integration' ) ) {
22
 
23
+ define( 'WC_GOOGLE_ANALYTICS_INTEGRATION_VERSION', '1.5.1' ); // WRCS: DEFINED_VERSION.
24
 
25
  /**
26
  * WooCommerce Google Analytics Integration main class.