diff --git a/CHANGELOG.md b/CHANGELOG.md index 9382295..6840956 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.8] - 2026-01-24 + +### Fixed + +- Fixed duplicate German translation string causing `ArgumentCountError` in settings page +- The notification settings description had duplicated text with two `%s` placeholders + +### Changed + +- Updated `magdev/wc-licensed-product-client` to latest version (64d215c) + ## [0.3.7] - 2026-01-24 ### Added diff --git a/wc-licensed-product.php b/wc-licensed-product.php index 49bab7b..1db3d91 100644 --- a/wc-licensed-product.php +++ b/wc-licensed-product.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Licensed Product * Plugin URI: https://src.bundespruefstelle.ch/magdev/wc-licensed-product * Description: WooCommerce plugin to sell software products using license keys with domain-based validation. - * Version: 0.3.7 + * Version: 0.3.8 * Author: Marco Graetsch * Author URI: https://src.bundespruefstelle.ch/magdev * License: GPL-2.0-or-later @@ -28,7 +28,7 @@ if (!defined('ABSPATH')) { } // Plugin constants -define('WC_LICENSED_PRODUCT_VERSION', '0.3.7'); +define('WC_LICENSED_PRODUCT_VERSION', '0.3.8'); define('WC_LICENSED_PRODUCT_PLUGIN_FILE', __FILE__); define('WC_LICENSED_PRODUCT_PLUGIN_DIR', plugin_dir_path(__FILE__)); define('WC_LICENSED_PRODUCT_PLUGIN_URL', plugin_dir_url(__FILE__));