From 1b7c7a02575d3332b7d38b35cae214b90a8118a6 Mon Sep 17 00:00:00 2001 From: magdev Date: Wed, 31 Dec 2025 21:16:43 +0100 Subject: [PATCH] Bump version to 1.1.6 for release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Incremented version number to 1.1.6 reflecting admin translation updates. Changes: - Version header: 1.1.5 → 1.1.6 - Version constant: 1.1.5 → 1.1.6 - CHANGELOG.md: Added v1.1.6 release notes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- CHANGELOG.md | 18 ++++++++++++++++++ wc-composable-product.php | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc1362b..396692f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.6] - 2025-12-31 + +### Added + +- Complete translations for all admin area strings across all 6 supported locales +- "Fixed Price" field label and description translations + +### Changed + +- Updated translation template (.pot) to version 1.1.6 +- Simplified "How to calculate the price" description text + +### Technical + +- All .po files now include translations for v1.1.4 admin strings +- 100% translation coverage maintained across all locales (56/56 strings) +- German formal/informal variants properly differentiated (Sie vs. du) + ## [1.1.5] - 2025-12-31 ### Fixed diff --git a/wc-composable-product.php b/wc-composable-product.php index ad8d266..0d9e08e 100644 --- a/wc-composable-product.php +++ b/wc-composable-product.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Composable Products * Plugin URI: https://github.com/magdev/wc-composable-product * Description: Create composable products where customers select a limited number of items from a configurable set - * Version: 1.1.5 + * Version: 1.1.6 * Author: Marco Graetsch * Author URI: https://example.com * License: GPL v3 or later @@ -19,7 +19,7 @@ defined('ABSPATH') || exit; // Define plugin constants -define('WC_COMPOSABLE_PRODUCT_VERSION', '1.1.5'); +define('WC_COMPOSABLE_PRODUCT_VERSION', '1.1.6'); define('WC_COMPOSABLE_PRODUCT_FILE', __FILE__); define('WC_COMPOSABLE_PRODUCT_PATH', plugin_dir_path(__FILE__)); define('WC_COMPOSABLE_PRODUCT_URL', plugin_dir_url(__FILE__));