Skip to content

Commit edd1f16

Browse files
committed
bump version to v0.0.6
1 parent 0de7077 commit edd1f16

8 files changed

+32
-10
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k
8181

8282
## Changelog ##
8383

84+
### 0.0.6 ###
85+
- Switch from REST API endpoints to `admin-ajax.php`.
86+
- Adds `split_tests_endpoint_url` and `split_tests_current_url` filters (for headless).
87+
- Click conversions check up the DOM tree for a parent with an `href` attribute if one isn't found on the click event target.
88+
- Fixes a case-sensitivity bug (`DomTests` instead of `DOMTests`).
89+
90+
### 0.0.5 ###
91+
- Filter on `the_title` for post title tests
92+
- Add `split_tests_is_single` hook
93+
- Make JS more headless-friendly
94+
8495
### 0.0.4 ###
8596
Adds a cron mechanism to combine raw events in the database into daily aggregates
8697

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "the-markup/split-tests",
33
"description": "Simple A/B testing for WordPress",
4-
"version": "0.0.5",
4+
"version": "0.0.6",
55
"type": "wordpress-plugin",
66
"repositories": [
77
{

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languages/split-tests.pot

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is distributed under the same license as the Split Tests package.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Split Tests 0.0.5\n"
5+
"Project-Id-Version: Split Tests 0.0.6\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/split-tests\n"
7-
"POT-Creation-Date: 2024-09-23 15:22:18+00:00\n"
7+
"POT-Creation-Date: 2024-09-25 17:54:44+00:00\n"
88
"MIME-Version: 1.0\n"
99
"Content-Type: text/plain; charset=utf-8\n"
1010
"Content-Transfer-Encoding: 8bit\n"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "split-tests",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"main": "Gruntfile.js",
55
"author": "The Markup <info@themarkup.org>",
66
"scripts": {

readme.txt

+13-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Contributors: themarkup
33
Donate link: https://themarkup.org/donate
44
Tags: split-tests
55
Requires at least: 4.5
6-
Tested up to: 6.6.1
6+
Tested up to: 6.6.2
77
Requires PHP: 5.6
8-
Stable tag: 0.0.5
8+
Stable tag: 0.0.6
99
License: GPLv2 or later
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -85,6 +85,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k
8585

8686
== Changelog ==
8787

88+
= 0.0.6 =
89+
- Switch from REST API endpoints to `admin-ajax.php`.
90+
- Adds `split_tests_endpoint_url` and `split_tests_current_url` filters (for headless).
91+
- Click conversions check up the DOM tree for a parent with an `href` attribute if one isn't found on the click event target.
92+
- Fixes a case-sensitivity bug (`DomTests` instead of `DOMTests`).
93+
94+
= 0.0.5 =
95+
- Filter on `the_title` for post title tests
96+
- Add `split_tests_is_single` hook
97+
- Make JS more headless-friendly
98+
8899
= 0.0.4 =
89100
Adds a cron mechanism to combine raw events in the database into daily aggregates
90101

split-tests.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author URI: https://themarkup.org/
88
* Text Domain: split-tests
99
* Domain Path: /languages
10-
* Version: 0.0.5
10+
* Version: 0.0.6
1111
*
1212
* @package SplitTests
1313
*/

0 commit comments

Comments
 (0)