From f01e5c46670f956657b555042cbffffc7e308294 Mon Sep 17 00:00:00 2001 From: goncaloasimoes <32324608+goncaloasimoes@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:29:30 +0000 Subject: [PATCH] Release 0.5.7 --- CHANGELOG.md | 5 ++++- lib/Admin/Customize.php | 2 +- lib/Router/Directory.php | 2 +- unbabble.php | 4 ++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c023507..a8aa6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.7] - 2024-12-19 + ### Fixed - Fatal error when deleting a menu in the backoffice. @@ -526,7 +528,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 First Release! -[unreleased]: https://github.com/26b/unbabble/compare/0.5.6...HEAD +[unreleased]: https://github.com/26b/unbabble/compare/0.5.7...HEAD +[0.5.7]: https://github.com/26b/unbabble/compare/0.5.6...0.5.7 [0.5.6]: https://github.com/26b/unbabble/compare/0.5.5...0.5.6 [0.5.5]: https://github.com/26b/unbabble/compare/0.5.4...0.5.5 [0.5.4]: https://github.com/26b/unbabble/compare/0.5.3...0.5.4 diff --git a/lib/Admin/Customize.php b/lib/Admin/Customize.php index 5daa25b..19233fb 100644 --- a/lib/Admin/Customize.php +++ b/lib/Admin/Customize.php @@ -54,7 +54,7 @@ public function register() { /** * Add lang metaboxes to nav menu edit. * - * @since Unreleased Fetch menu id from $_REQUEST only if the action is not delete. + * @since 0.5.7 Fetch menu id from $_REQUEST only if the action is not delete. * @since 0.4.5 Add hidden input `ubb_source` for new menu's when linking. * @since 0.4.2 Added surrounding and to the term meta box. Changed ob_get_flush to ob_get_clean. * @since 0.0.3 diff --git a/lib/Router/Directory.php b/lib/Router/Directory.php index b0d256d..8ccfa92 100644 --- a/lib/Router/Directory.php +++ b/lib/Router/Directory.php @@ -468,7 +468,7 @@ public function network_home_url( string $url, string $path ) : string { /** * Adds directory to admin url. * - * @since Unreleased Add lang query arg regardless of the current language. + * @since 0.5.7 Add lang query arg regardless of the current language. * @since 0.0.3 * * @param string $url diff --git a/unbabble.php b/unbabble.php index c1e6c75..8d4eba0 100644 --- a/unbabble.php +++ b/unbabble.php @@ -4,7 +4,7 @@ * Plugin Name: Unbabble * Plugin URI: https://github.com/26B/unbabble * Description: A new and simple i18n system for WordPress - * Version: 0.5.6 + * Version: 0.5.7 * Author: 26B * Author URI: https://26b.io/ * License: GPL-2.0+ @@ -42,7 +42,7 @@ */ \register_deactivation_hook( __FILE__, '\TwentySixB\WP\Plugin\Unbabble\Deactivator::deactivate' ); -$plugin = new TwentySixB\WP\Plugin\Unbabble\Plugin( 'unbabble', '0.5.6' ); +$plugin = new TwentySixB\WP\Plugin\Unbabble\Plugin( 'unbabble', '0.5.7' ); // Initialize plugin. $plugin->init();