diff --git a/README.md b/README.md index 0792d1e..f088fe7 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k ## Changelog ## +### 0.1.1 ### +- Adds freeform CSS changes to DOM tests. +- Adds a scroll conversion option. +- Bugfix for title test post selection. + +### 0.1.0 ### +- Adds class changes to DOM tests. +- Improves how title tests sync publish status with their associated split test. +- Bugfix for database migrations. +- Bugfix for title test conversions. + ### 0.0.9 ### - Adds a `split_tests_is_headless` filter that changes how redirects are handled. - Bugfix: don't apply unpublished tests to the site. diff --git a/composer.json b/composer.json index fe3496c..fa81daf 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.1.0", + "version": "0.1.1", "type": "wordpress-plugin", "repositories": [ { diff --git a/composer.lock b/composer.lock index 9a9c0ac..514c78b 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": "29be3796bd88b47ee5725e720ae2a3f2", + "content-hash": "b5b14131823d72b19c2fa0e43ddd7262", "packages": [ { "name": "composer/installers", diff --git a/languages/split-tests.pot b/languages/split-tests.pot index c1ec6cb..4cfd727 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.1.0\n" +"Project-Id-Version: Split Tests 0.1.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/split-tests\n" -"POT-Creation-Date: 2024-11-25 16:12:51+00:00\n" +"POT-Creation-Date: 2024-12-02 20:02:39+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 2440ee2..0ad2193 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "split-tests", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "split-tests", - "version": "0.1.0", + "version": "0.1.1", "devDependencies": { "@wordpress/scripts": "^30.5.1", "grunt": "~1.6.1", diff --git a/package.json b/package.json index 3dab568..ef1a991 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "split-tests", - "version": "0.1.0", + "version": "0.1.1", "main": "Gruntfile.js", "author": "The Markup ", "scripts": { diff --git a/readme.txt b/readme.txt index 4c1f98d..36a4b30 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: split-tests Requires at least: 4.5 Tested up to: 6.7.1 Requires PHP: 5.6 -Stable tag: 0.1.0 +Stable tag: 0.1.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -86,6 +86,17 @@ Yes, the tests will work fine with HTML generated behind a CDN, or using other k == Changelog == += 0.1.1 = +- Adds freeform CSS changes to DOM tests. +- Adds a scroll conversion option. +- Bugfix for title test post selection. + += 0.1.0 = +- Adds class changes to DOM tests. +- Improves how title tests sync publish status with their associated split test. +- Bugfix for database migrations. +- Bugfix for title test conversions. + = 0.0.9 = - Adds a `split_tests_is_headless` filter that changes how redirects are handled. - Bugfix: don't apply unpublished tests to the site. diff --git a/setup/db/wordpress.sql.gz b/setup/db/wordpress.sql.gz index ca56914..d147ec4 100644 Binary files a/setup/db/wordpress.sql.gz and b/setup/db/wordpress.sql.gz differ diff --git a/split-tests.php b/split-tests.php index deec9b8..17d949b 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.1.0 + * Version: 0.1.1 * * @package SplitTests */