Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V5.3.0 #121

Merged
merged 2 commits into from May 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 43 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,46 @@
## 5.3.0 (23.05.2022)
* Tested with WordPress 6.0 and WooCommerce 6.5.

## 5.2.7 (14.02.2022)
* Tested with WooCommerce 6.2.
* Added PHP 8.1 support.

## 5.2.6 (25.12.2021)
* Revert fix made in 5.2.5 for 404 with WPML, as it created several issues on the frontend.
* Fix again 404 on archives created with WPML before activation of cyr2lat.

## 5.2.5 (19.12.2021)
* Tested up to WordPress 5.9 and WooCommerce 6.0.
* Fix issue with Polylang - do not modify admin language when editing a post.
* Fix issue with JetPack - fatal error on synchronisation.
* Fix 404 on archives created with WPML before activation of cyr2lat.

## 5.2.4 (07.09.2021)
* Fix issue with not showing WooCommerce variable product attributes.
* Fix issue with Elementor and WPML, endless loop.

## 5.2.3 (07.09.2021)
* Fix issue with WP Foro plugin - transliterate topic slug when created on frontend.
* Fix bug with Polylang on REST request.

## 5.2.2 (06.09.2021)
* Fix issue caused by the bug in Jetpack sync.
* Optimize code related to WPML locale filtering.
* Fix endless loading of a taxonomy page with WPML.
* Fix 'nothing found' on a taxonomy page with WPML.

## 5.2.1 (29.07.2021)
* Determine WPML language only once to improve performance.
* Avoid notice on bad SQL request when taxonomies are empty.

## 5.2.0 (27.07.2021)
* Add support for categories and tags in other languages with wpml.

## 5.1.0 (19.07.2021)
* Fix issue-95 - 404 on localized terms created before plugin install.
* Add cache flushing after batch conversion.
* Tested with WordPress 5.8

## 5.0.4 (17.04.2021)
* Fix bug in converter without saved options

Expand Down
6 changes: 3 additions & 3 deletions cyr-to-lat.php
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Cyr-To-Lat
* Plugin URI: https://wordpress.org/plugins/cyr2lat/
* Description: Convert Non-Latin characters in post and term slugs to Latin characters. Useful for creating human-readable URLs. Based on the original plugin by Anton Skorobogatov.
* Version: 5.2.7
* Version: 5.3.0
* Requires at least: 5.1
* Requires PHP: 5.6.20
* Author: Sergey Biryukov, Mikhail Kobzarev, Igor Gergel
Expand All @@ -22,7 +22,7 @@
*
*
* WC requires at least: 3.0
* WC tested up to: 6.2
* WC tested up to: 6.5
*/

namespace Cyr_To_Lat;
Expand All @@ -40,7 +40,7 @@
/**
* Plugin version.
*/
define( 'CYR_TO_LAT_VERSION', '5.2.7' );
define( 'CYR_TO_LAT_VERSION', '5.3.0' );

/**
* Path to the plugin dir.
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Expand Up @@ -2,8 +2,8 @@
Contributors: SergeyBiryukov, mihdan, karevn, webvitaly, kaggdesign
Tags: cyrillic, belorussian, ukrainian, bulgarian, macedonian, georgian, kazakh, latin, l10n, russian, cyr-to-lat, cyr2lat, rustolat, slugs, translations, transliteration
Requires at least: 5.1
Tested up to: 5.9
Stable tag: 5.2.7
Tested up to: 6.0
Stable tag: 5.3.0
Requires PHP: 5.6.20
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -190,6 +190,9 @@ Yes you can!

== Changelog ==

= 5.3.0 (23.05.2022) =
* Tested with WordPress 6.0 and WooCommerce 6.5.

= 5.2.7 (14.02.2022) =
* Tested with WooCommerce 6.2.
* Added PHP 8.1 support.
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/bootstrap.php
Expand Up @@ -37,7 +37,7 @@
/**
* Plugin version.
*/
const CYR_TO_LAT_TEST_VERSION = '5.2.7';
const CYR_TO_LAT_TEST_VERSION = '5.3.0';

/**
* Path to the plugin dir.
Expand Down