diff --git a/CHANGELOG.md b/CHANGELOG.md index 5598bb25e..38e37fdd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.0.0-alpha.11] (October 19, 2023) + +**Bugfixes** +* Don't set context to empty string by default ([#1726]) + ## [4.0.0-alpha.10] (October 16, 2023) **Features** @@ -593,6 +598,7 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini * Initial release. +[4.0.0-alpha.11]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.10...4.0.0-alpha.11 [4.0.0-alpha.10]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.9...4.0.0-alpha.10 [4.0.0-alpha.9]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.8...4.0.0-alpha.9 [4.0.0-alpha.8]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.7...4.0.0-alpha.8 @@ -725,3 +731,4 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini [#1711]: https://github.com/GlotPress/GlotPress/pull/1711 [#1713]: https://github.com/GlotPress/GlotPress/pull/1713 [#1714]: https://github.com/GlotPress/GlotPress/pull/1714 +[#1726]: https://github.com/GlotPress/GlotPress/pull/1726 diff --git a/glotpress.php b/glotpress.php index 5429851ae..6cb6e986a 100644 --- a/glotpress.php +++ b/glotpress.php @@ -3,7 +3,7 @@ * Plugin Name: GlotPress * Plugin URI: https://wordpress.org/plugins/glotpress/ * Description: GlotPress is a tool to help translators collaborate. - * Version: 4.0.0-alpha.10 + * Version: 4.0.0-alpha.11 * Requires at least: 4.6 * Tested up to: 5.9 * Requires PHP: 7.4 @@ -29,7 +29,7 @@ * @package GlotPress */ -define( 'GP_VERSION', '4.0.0-alpha.10' ); +define( 'GP_VERSION', '4.0.0-alpha.11' ); define( 'GP_DB_VERSION', '980' ); define( 'GP_CACHE_VERSION', '3.0' ); define( 'GP_ROUTING', true );