Skip to content

Commit

Permalink
Release 0.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
goncaloasimoes committed Dec 19, 2024
1 parent 11c305b commit f01e5c4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Admin/Customize.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <table> and <tbody> to the term meta box. Changed ob_get_flush to ob_get_clean.
* @since 0.0.3
Expand Down
2 changes: 1 addition & 1 deletion lib/Router/Directory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions unbabble.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit f01e5c4

Please sign in to comment.