From 7c0016c2444f662cbc0970c2fa4db98f9df4995f Mon Sep 17 00:00:00 2001 From: magdev Date: Tue, 3 Feb 2026 23:21:17 +0100 Subject: [PATCH] Bump version to 0.11.1 - Add i18n translation files (German Switzerland) - Update README with WooCommerce documentation Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 15 +++++++++++++++ wp-bnb.php | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1d72d4..632c423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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). +## [0.11.1] - 2026-02-03 + +### Added + +- Internationalization (i18n) support: + - Translation template file `languages/wp-bnb.pot` with 1,140 translatable strings + - German (Switzerland) translation `languages/wp-bnb-de_CH.po` with 77% coverage (875 strings) + - Compiled binary `languages/wp-bnb-de_CH.mo` for WordPress use + - Coverage includes: admin UI, post types, taxonomies, settings, dashboard, reports, REST API, WooCommerce, CF7, widgets, blocks, shortcodes + +### Changed + +- README.md updated with comprehensive WooCommerce integration documentation +- Added REST API to key features list in README + ## [0.11.0] - 2026-02-03 ### Added diff --git a/wp-bnb.php b/wp-bnb.php index 15864c7..890d578 100644 --- a/wp-bnb.php +++ b/wp-bnb.php @@ -3,7 +3,7 @@ * Plugin Name: WP BnB Management * Plugin URI: https://src.bundespruefstelle.ch/magdev/wp-bnb * Description: A comprehensive Bed & Breakfast management system for WordPress. Manage buildings, rooms, bookings, and guests. - * Version: 0.11.0 + * Version: 0.11.1 * Requires at least: 6.0 * Requires PHP: 8.3 * Author: Marco Graetsch @@ -24,7 +24,7 @@ if ( ! defined( 'ABSPATH' ) ) { } // Plugin version constant - MUST match Version in header above. -define( 'WP_BNB_VERSION', '0.11.0' ); +define( 'WP_BNB_VERSION', '0.11.1' ); // Plugin path constants. define( 'WP_BNB_PATH', plugin_dir_path( __FILE__ ) );