diff --git a/changelog.txt b/changelog.txt index acafe21..b32777d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,15 +1,19 @@ # Changelog +## 1.0.3 | June 20, 2024 + +- Fixed issue where Code Chest overwrote 3rd-party values added via the `gform_form_after_open` filter. Credit: [Bas Tolen](https://github.com/bastolen). + ## 1.0.2 - - Fixed issue where CSS comments containing a comma would be prefixed incorrectly, which could cause syntax errors in the CSS. +- Fixed issue where CSS comments containing a comma would be prefixed incorrectly, which could cause syntax errors in the CSS. ## 1.0.1 - - Fixed issue where PHP error would occur if a form without custom code was duplicated. - - Fixed issue with 'Open Code Chest' link on a sub site redirecting back to the main site. - - Fixed a notice generated on PHP 8.1+ when no custom CSS was set. +- Fixed issue where PHP error would occur if a form without custom code was duplicated. +- Fixed issue with 'Open Code Chest' link on a sub site redirecting back to the main site. +- Fixed a notice generated on PHP 8.1+ when no custom CSS was set. ## 1.0.0 - - Hello World! +- Hello World! diff --git a/gf-code-chest.php b/gf-code-chest.php index d2039fa..68b1eff 100644 --- a/gf-code-chest.php +++ b/gf-code-chest.php @@ -3,7 +3,7 @@ * Plugin Name: Gravity Forms Code Chest * Description: Pair the magic of Code Chest's robust models with Gravity Forms' flexibility. * Plugin URI: https://gravitywiz.com/gf-code-chest/ - * Version: 1.0.2 + * Version: 1.0.3 * Author: Gravity Wiz * Author URI: https://gravitywiz.com/ * License: GPL2 @@ -18,7 +18,7 @@ */ -define( 'GWIZ_GF_CODE_CHEST_VERSION', '1.0.2' ); +define( 'GWIZ_GF_CODE_CHEST_VERSION', '1.0.3' ); defined( 'ABSPATH' ) || die();