diff --git a/README.md b/README.md index e497558..3d45bb2 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k ## Changelog ## +### 0.0.6 ### +- Switch from REST API endpoints to `admin-ajax.php`. +- Adds `split_tests_endpoint_url` and `split_tests_current_url` filters (for headless). +- Click conversions check up the DOM tree for a parent with an `href` attribute if one isn't found on the click event target. +- Fixes a case-sensitivity bug (`DomTests` instead of `DOMTests`). + +### 0.0.5 ### +- Filter on `the_title` for post title tests +- Add `split_tests_is_single` hook +- Make JS more headless-friendly + ### 0.0.4 ### Adds a cron mechanism to combine raw events in the database into daily aggregates diff --git a/composer.json b/composer.json index 1d5f14e..b95892b 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "the-markup/split-tests", "description": "Simple A/B testing for WordPress", - "version": "0.0.5", + "version": "0.0.6", "type": "wordpress-plugin", "repositories": [ { diff --git a/composer.lock b/composer.lock index 180eca3..67a4498 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "31fdf8a42c5a6dfb39ae9439dafed6b9", + "content-hash": "eb2f870fe11e407b4a793f983cda9ddb", "packages": [ { "name": "composer/installers", diff --git a/languages/split-tests.pot b/languages/split-tests.pot index c970a7f..803cbbc 100644 --- a/languages/split-tests.pot +++ b/languages/split-tests.pot @@ -2,9 +2,9 @@ # This file is distributed under the same license as the Split Tests package. msgid "" msgstr "" -"Project-Id-Version: Split Tests 0.0.5\n" +"Project-Id-Version: Split Tests 0.0.6\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/split-tests\n" -"POT-Creation-Date: 2024-09-23 15:22:18+00:00\n" +"POT-Creation-Date: 2024-09-25 17:54:44+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/package-lock.json b/package-lock.json index 4744d25..14f5552 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "split-tests", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "split-tests", - "version": "0.0.5", + "version": "0.0.6", "devDependencies": { "@wordpress/scripts": "^28.4.0", "grunt": "~1.6.1", diff --git a/package.json b/package.json index a48f6e0..8a70941 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "split-tests", - "version": "0.0.5", + "version": "0.0.6", "main": "Gruntfile.js", "author": "The Markup ", "scripts": { diff --git a/readme.txt b/readme.txt index 5265e35..8ca3dd6 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: themarkup Donate link: https://themarkup.org/donate Tags: split-tests Requires at least: 4.5 -Tested up to: 6.6.1 +Tested up to: 6.6.2 Requires PHP: 5.6 -Stable tag: 0.0.5 +Stable tag: 0.0.6 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -85,6 +85,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k == Changelog == += 0.0.6 = +- Switch from REST API endpoints to `admin-ajax.php`. +- Adds `split_tests_endpoint_url` and `split_tests_current_url` filters (for headless). +- Click conversions check up the DOM tree for a parent with an `href` attribute if one isn't found on the click event target. +- Fixes a case-sensitivity bug (`DomTests` instead of `DOMTests`). + += 0.0.5 = +- Filter on `the_title` for post title tests +- Add `split_tests_is_single` hook +- Make JS more headless-friendly + = 0.0.4 = Adds a cron mechanism to combine raw events in the database into daily aggregates diff --git a/split-tests.php b/split-tests.php index 71ca455..d31d7e7 100644 --- a/split-tests.php +++ b/split-tests.php @@ -7,7 +7,7 @@ * Author URI: https://themarkup.org/ * Text Domain: split-tests * Domain Path: /languages - * Version: 0.0.5 + * Version: 0.0.6 * * @package SplitTests */