diff --git a/readme.txt b/readme.txt index 5415e13..2a577fe 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://wplingua.com/ Tags: translate, translation, multilingual, localization, language Requires at least: 6.0 Tested up to: 6.7 -Stable tag: 2.1.1 +Stable tag: 2.1.2 Requires PHP: 7.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -174,6 +174,14 @@ No, not at the moment but in the meantime, you can easily display the language s == Changelog == += 2.1.2 = + +* Better plugin translations loading +* Better slug status management +* Optimize cache for wpLingua functions +* Plugin compatibility: Debug Bar +* Clear wpLingua query args in hreflang URLs + = 2.1.1 = * Added compatibility with WordPress 6.7 diff --git a/wplingua.php b/wplingua.php index 6d072d1..007f38c 100644 --- a/wplingua.php +++ b/wplingua.php @@ -7,7 +7,7 @@ * Author URI: https://github.com/julien-jacob/wplingua * Text Domain: wplingua * Domain Path: /languages/ - * Version: 2.1.1 + * Version: 2.1.2 * Requires PHP: 7.4 * License: GPL v2 or later * License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -24,7 +24,7 @@ define( 'WPLNG_API_URL', 'https://api.wplingua.com' ); define( 'WPLNG_API_VERSION', '2.0' ); define( 'WPLNG_API_SSLVERIFY', true ); -define( 'WPLNG_PLUGIN_VERSION', '2.1.1' ); +define( 'WPLNG_PLUGIN_VERSION', '2.1.2' ); define( 'WPLNG_PLUGIN_FILE', plugin_basename( __FILE__ ) ); define( 'WPLNG_PLUGIN_PATH', dirname( __FILE__ ) ); define( 'WPLNG_MAX_TRANSLATIONS', 256 );