diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f686ab..35451f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,16 @@ 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). -## [Unreleased] +## [1.0.0] - 2019-10-21 ### Added -* API to programmatically change the domains list ([#56]) +* Locked out instructions to readme file. ([#61]) +* API to programmatically change the domains list. ([#56]) + +### Fixed + +* Don't add canonical link if settings are `false`. ([#58]) ## [0.11.2] - 2019-04-19 @@ -242,7 +247,8 @@ e.g. * Option base path for each domain. -[Unreleased]: https://github.com/straube/multiple-domain/compare/v0.11.2...HEAD +[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.0...HEAD +[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 [0.11.0]: https://github.com/straube/multiple-domain/compare/v0.10.3...v0.11.0 @@ -267,6 +273,8 @@ 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 +[#61]: https://github.com/straube/multiple-domain/issues/61 +[#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 [#51]: https://github.com/straube/multiple-domain/issues/51 diff --git a/multiple-domain/MultipleDomain.php b/multiple-domain/MultipleDomain.php index 073a83a..75caefd 100644 --- a/multiple-domain/MultipleDomain.php +++ b/multiple-domain/MultipleDomain.php @@ -11,7 +11,7 @@ * @author Alexander Nosov * @author João Faria * @author Raphael Stäbler - * @version 0.11.2 + * @version 1.0.0 * @package multiple-domain */ class MultipleDomain @@ -23,7 +23,7 @@ class MultipleDomain * @var string * @since 0.3 */ - const VERSION = '0.11.2'; + const VERSION = '1.0.0'; /** * The number of the default HTTP port. @@ -417,6 +417,7 @@ public function getDomainProtocol($domain = null) * @param bool $keepOriginal Indicates whether the original domain should * be kept. * @return void + * @since 1.0.0 */ public function resetDomains($keepOriginal = true) { @@ -445,6 +446,7 @@ public function resetDomains($keepOriginal = true) * @param string $protocol The protocol option. It can be `http`, `https` * or `auto`. * @return void + * @since 1.0.0 */ public function addDomain($domain, $base = null, $lang = null, $protocol = 'auto') { @@ -462,6 +464,7 @@ public function addDomain($domain, $base = null, $lang = null, $protocol = 'auto * `resetDomains` and `addDomain` methods. * * @return void + * @since 1.0.0 */ public function storeDomains() { diff --git a/multiple-domain/MultipleDomainSettings.php b/multiple-domain/MultipleDomainSettings.php index 811a34f..a475461 100644 --- a/multiple-domain/MultipleDomainSettings.php +++ b/multiple-domain/MultipleDomainSettings.php @@ -6,7 +6,7 @@ * Integration with WordPress admin. * * @author Gustavo Straube - * @version 0.11.2 + * @version 1.0.0 * @since 0.11.0 * @package multiple-domain */ diff --git a/multiple-domain/multiple-domain.php b/multiple-domain/multiple-domain.php index faf5599..b59d369 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: 0.11.2 +Version: 1.0.0 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 fc637bc..4327476 100644 --- a/multiple-domain/readme.txt +++ b/multiple-domain/readme.txt @@ -101,6 +101,12 @@ https://github.com/straube/multiple-domain/issues/51. == Changelog == += 1.0.0 + +* Locked out instructions to readme file. +* API to programmatically change the domains list. +* Don't add canonical link if settings are `false`. + = 0.11.2 = * FAQ about removal of `hreflang` tags.