From 8815c6230d124d700fe983f7d389af90f56523bf Mon Sep 17 00:00:00 2001 From: goncaloasimoes <32324608+goncaloasimoes@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:28:33 +0100 Subject: [PATCH] Release 0.5.1 --- CHANGELOG.md | 5 ++++- lib/Admin/Redirector.php | 2 +- unbabble.php | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c4e93..af8bf1c 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.1] - 2024-09-03 + ### Changed - Lang url parameter set in language switch regardless of language not being default. @@ -476,7 +478,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.0...HEAD +[unreleased]: https://github.com/26b/unbabble/compare/0.5.1...HEAD +[0.5.1]: https://github.com/26b/unbabble/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/26b/unbabble/compare/0.4.8...0.5.0 [0.4.8]: https://github.com/26b/unbabble/compare/0.4.7...0.4.8 [0.4.7]: https://github.com/26b/unbabble/compare/0.4.6...0.4.7 diff --git a/lib/Admin/Redirector.php b/lib/Admin/Redirector.php index d7cc5f7..831d4e6 100644 --- a/lib/Admin/Redirector.php +++ b/lib/Admin/Redirector.php @@ -32,7 +32,7 @@ public function register() { /** * Changes back-office language and redirects to new url. * - * @since Unreleased Set lang param regardless of language not being default. + * @since 0.5.1 Set lang param regardless of language not being default. * @since 0.0.1 * * @param string $new_lang diff --git a/unbabble.php b/unbabble.php index cb919b7..53859a3 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.0 + * Version: 0.5.1 * 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.0' ); +$plugin = new TwentySixB\WP\Plugin\Unbabble\Plugin( 'unbabble', '0.5.1' ); // Initialize plugin. $plugin->init();