diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8714a..888ffb0 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.6] - 2020-08-02 + +### Fixed + +* Fix URI generated for canonical tag. ([#76]) + ## [1.0.5] - 2020-02-03 ### Fixed @@ -285,7 +291,8 @@ e.g. * Option base path for each domain. -[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.5...HEAD +[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.6...HEAD +[1.0.6]: https://github.com/straube/multiple-domain/compare/v1.0.5...v1.0.6 [1.0.5]: https://github.com/straube/multiple-domain/compare/v1.0.4...v1.0.5 [1.0.4]: https://github.com/straube/multiple-domain/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/straube/multiple-domain/compare/v1.0.2...v1.0.3 @@ -316,6 +323,7 @@ e.g. [0.2]: https://github.com/straube/multiple-domain/compare/v0.1...v0.2 [0.1]: https://github.com/straube/multiple-domain/releases/tag/v0.1 +[#76]: https://github.com/straube/multiple-domain/issues/76 [#71]: https://github.com/straube/multiple-domain/issues/71 [#61]: https://github.com/straube/multiple-domain/issues/61 [#59]: https://github.com/straube/multiple-domain/issues/59 diff --git a/multiple-domain/MultipleDomain.php b/multiple-domain/MultipleDomain.php index dfdddcd..bf1e3bb 100644 --- a/multiple-domain/MultipleDomain.php +++ b/multiple-domain/MultipleDomain.php @@ -5,14 +5,17 @@ * * Core features. * + * Contributors: + * + * - Clay Allsopp + * - Alexander Nosov + * - João Faria + * - Raphael Stäbler + * - Tobias Keller + * - Maxime Granier + * * @author Gustavo Straube - * @author Vivek Athalye - * @author Clay Allsopp - * @author Alexander Nosov - * @author João Faria - * @author Raphael Stäbler - * @author Tobias Keller - * @version 1.0.5 + * @version 1.0.6 * @package multiple-domain */ class MultipleDomain @@ -24,7 +27,7 @@ class MultipleDomain * @var string * @since 0.3 */ - const VERSION = '1.0.5'; + const VERSION = '1.0.6'; /** * The number of the default HTTP port. diff --git a/multiple-domain/MultipleDomainSettings.php b/multiple-domain/MultipleDomainSettings.php index d235283..5ec48ee 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.5 + * @version 1.0.6 * @since 0.11.0 * @package multiple-domain */ diff --git a/multiple-domain/multiple-domain.php b/multiple-domain/multiple-domain.php index 5298850..672e0f2 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.5 +Version: 1.0.6 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 bcf195d..9f4c9c8 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.2.4 +Tested up to: 5.5 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -119,6 +119,10 @@ and your page will be redirected. In this case, there are two ways to solve this == Changelog == += 1.0.6 = + +* Fix URI generated for canonical tag. + = 1.0.5 = * Fixed issue with system routes when a base path is defined. @@ -129,7 +133,7 @@ and your page will be redirected. In this case, there are two ways to solve this = 1.0.3 = -* Fixed XSS vulnerability in canonical/alternate tags. ([#71]) +* Fixed XSS vulnerability in canonical/alternate tags. = 1.0.2 = @@ -231,7 +235,7 @@ and your page will be redirected. In this case, there are two ways to solve this * Moved `MultipleDomain` class to its own file. * Fix: #14 Remove `filter_input` from plugin. * Attempt to fix #22. -* Added `MULTIPLE_DOMAIN_DOMAIN_LANG` constant for theme/plugin customization. Fixes #20. +* Added `MULTIPLE_DOMAIN_DOMAIN_LANG` constant for theme/plugin customization. * Fix: #21 No 'Access-Control-Allow-Origin' header is present on the requested resource = 0.7.1 =