diff --git a/CHANGELOG.md b/CHANGELOG.md index 94cf1734a..8209ace37 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/). +## [3.0.0-rc.2] (April 1, 2022) + +**Bugfixes** +* Glossary: Provide fallback if term splitting has failed. ([#1378]) + ## [3.0.0-rc.1] (March 31, 2022) **Bugfixes** @@ -443,7 +448,8 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini * Initial release. -[Unreleased]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-rc.1...HEAD +[Unreleased]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-rc.2...HEAD +[3.0.0-rc.2]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-rc.1...3.0.0-rc.2 [3.0.0-rc.1]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-beta.1...3.0.0-rc.1 [3.0.0-beta.1]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-alpha.4...3.0.0-beta.1 [3.0.0-alpha.4]: https://github.com/GlotPress/GlotPress-WP/compare/3.0.0-alpha.3...3.0.0-alpha.4 @@ -492,3 +498,4 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini [#1367]: https://github.com/GlotPress/GlotPress-WP/pull/1367 [#1364]: https://github.com/GlotPress/GlotPress-WP/pull/1364 [#1360]: https://github.com/GlotPress/GlotPress-WP/pull/1360 +[#1360]: https://github.com/GlotPress/GlotPress-WP/pull/1378 diff --git a/glotpress.php b/glotpress.php index 7142a31ce..2bfe25c07 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: 3.0.0-rc.1 + * Version: 3.0.0-rc.2 * Author: the GlotPress team * Author URI: https://glotpress.blog * License: GPLv2 or later @@ -26,7 +26,7 @@ * @package GlotPress */ -define( 'GP_VERSION', '3.0.0-rc.1' ); +define( 'GP_VERSION', '3.0.0-rc.2' ); define( 'GP_DB_VERSION', '980' ); define( 'GP_CACHE_VERSION', '3.0' ); define( 'GP_ROUTING', true );