diff --git a/CHANGELOG.md b/CHANGELOG.md index 35451f1..8955832 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Since `0.7.1` this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.1] - 2019-10-25 + +### Fixed + +* Fixed issue with regex used in domain replacement. ([#59]) + ## [1.0.0] - 2019-10-21 ### Added @@ -247,7 +253,8 @@ e.g. * Option base path for each domain. -[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/straube/multiple-domain/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/straube/multiple-domain/compare/v0.11.2...v1.0.0 [0.11.2]: https://github.com/straube/multiple-domain/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/straube/multiple-domain/compare/v0.11.0...v0.11.1 @@ -274,6 +281,7 @@ e.g. [0.1]: https://github.com/straube/multiple-domain/releases/tag/v0.1 [#61]: https://github.com/straube/multiple-domain/issues/61 +[#59]: https://github.com/straube/multiple-domain/issues/59 [#58]: https://github.com/straube/multiple-domain/issues/58 [#56]: https://github.com/straube/multiple-domain/issues/56 [#55]: https://github.com/straube/multiple-domain/issues/55 diff --git a/README.md b/README.md index d64e008..150f274 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ and your page will be redirected. In this case, there are two ways to solve this 1. Delete the plugin directory `wp-content/plugins/multiple-domain`. You should be able to do that from the hosting panel, from an FTP client, or via SSH. The downside of this technique is that it won’t be possible to install the plugin again since the configuration will still be in the database. -2. Remove the plugin configuration from the database using the following SQL query `DELETE FROM {YOUR-PREFIX}_options +2. Remove the plugin configuration from the database using the following SQL query `DELETE FROM {YOUR-PREFIX}_options WHERE option_name LIKE 'multiple-domain-%'`; (Remember to replace the prefix from your own table name). This can be done from the hosting panel when PHPMyAdmin is available or using a MySQL client. @@ -96,7 +96,7 @@ Refer to [CHANGELOG.md](CHANGELOG.md) for release notes and changes. Contributors: GustavoStraube, cyberaleks, jffaria Tags: multiple, domains, redirect Requires at least: 4.0 -Tested up to: 5.1.1 +Tested up to: 5.2.4 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/multiple-domain/MultipleDomain.php b/multiple-domain/MultipleDomain.php index 17d7be1..ffeba2e 100644 --- a/multiple-domain/MultipleDomain.php +++ b/multiple-domain/MultipleDomain.php @@ -12,7 +12,7 @@ * @author João Faria * @author Raphael Stäbler * @author Tobias Keller - * @version 1.0.0 + * @version 1.0.1 * @package multiple-domain */ class MultipleDomain diff --git a/multiple-domain/MultipleDomainSettings.php b/multiple-domain/MultipleDomainSettings.php index a475461..73554de 100644 --- a/multiple-domain/MultipleDomainSettings.php +++ b/multiple-domain/MultipleDomainSettings.php @@ -6,7 +6,7 @@ * Integration with WordPress admin. * * @author Gustavo Straube - * @version 1.0.0 + * @version 1.0.1 * @since 0.11.0 * @package multiple-domain */ diff --git a/multiple-domain/multiple-domain.php b/multiple-domain/multiple-domain.php index b59d369..4186125 100644 --- a/multiple-domain/multiple-domain.php +++ b/multiple-domain/multiple-domain.php @@ -4,7 +4,7 @@ Plugin Name: Multiple Domain Plugin URI: https://github.com/straube/multiple-domain Description: This plugin allows you to have multiple domains in a single WordPress installation and enables custom redirects for each domain. -Version: 1.0.0 +Version: 1.0.1 Author: Gustavo Straube (straube.co) Author URI: http://straube.co License: GPLv2 or later diff --git a/multiple-domain/readme.txt b/multiple-domain/readme.txt index 4327476..892e759 100644 --- a/multiple-domain/readme.txt +++ b/multiple-domain/readme.txt @@ -2,7 +2,7 @@ Contributors: GustavoStraube, cyberaleks, jffaria Tags: multiple, domains, redirect Requires at least: 4.0 -Tested up to: 5.1.1 +Tested up to: 5.2.4 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -101,6 +101,10 @@ https://github.com/straube/multiple-domain/issues/51. == Changelog == += 1.0.1 + +* Fixed issue with regex used in domain replacement. + = 1.0.0 * Locked out instructions to readme file.