diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b5b81a..f15e756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ 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.12.1] - 2026-02-04 + +### Fixed + +- Fixed WooCommerce product sync button not working on settings page +- Fixed AJAX handler registration timing (now registered directly instead of on `woocommerce_loaded` hook) +- Fixed sync button icon vertical alignment +- Added Dashboard link to WordPress plugins list page + +### Added + +- Better error handling and console logging for WooCommerce sync AJAX requests + ## [0.12.0] - 2026-02-04 ### Security diff --git a/wp-bnb.php b/wp-bnb.php index 8b40445..b196c12 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.12.0 + * Version: 0.12.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.12.0' ); +define( 'WP_BNB_VERSION', '0.12.1' ); // Plugin path constants. define( 'WP_BNB_PATH', plugin_dir_path( __FILE__ ) );