Skip to content

Commit

Permalink
Release 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
goncaloasimoes committed Jul 15, 2024
1 parent b652943 commit ed70e28
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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.4.4] - 2024-07-15

### Added

- Dynamic options key handling for option proxying.
Expand Down Expand Up @@ -382,7 +384,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.4.3...HEAD
[unreleased]: https://github.com/26b/unbabble/compare/0.4.4...HEAD
[0.4.4]: https://github.com/26b/unbabble/compare/0.4.3...0.4.4
[0.4.3]: https://github.com/26b/unbabble/compare/0.4.2...0.4.3
[0.4.2]: https://github.com/26b/unbabble/compare/0.4.1...0.4.2
[0.4.1]: https://github.com/26b/unbabble/compare/0.4.0...0.4.1
Expand Down
2 changes: 1 addition & 1 deletion lib/Admin/OptionsProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function pre_update_option_proxy( $value, string $option, $old_value ) {
/**
* Returns whether an option is proxiable by Unbabble.
*
* @since Unreleased Add handling for dynamic option keys.
* @since 0.4.4 Add handling for dynamic option keys.
* @since 0.2.0
*
* @param string $option
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: Unreleased
* Version: 0.4.4
* Author: 26B
* Author URI: https://26b.io/
* License: GPL-2.0+
Expand Down Expand Up @@ -34,7 +34,7 @@
*/
\register_deactivation_hook( __FILE__, '\TwentySixB\WP\Plugin\Unbabble\Deactivator::deactivate' );

$plugin = new TwentySixB\WP\Plugin\Unbabble\Plugin( 'unbabble', 'Unreleased' );
$plugin = new TwentySixB\WP\Plugin\Unbabble\Plugin( 'unbabble', '0.4.4' );

// Initialize plugin.
$plugin->init();
Expand Down

0 comments on commit ed70e28

Please sign in to comment.