Skip to content

Commit

Permalink
bump version to v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dphiffer committed Sep 25, 2024
1 parent 0de7077 commit edd1f16
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 10 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions languages/split-tests.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-tests",
"version": "0.0.5",
"version": "0.0.6",
"main": "Gruntfile.js",
"author": "The Markup <[email protected]>",
"scripts": {
Expand Down
15 changes: 13 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion split-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit edd1f16

Please sign in to comment.