Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

Commit

Permalink
Version bump to 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
straube committed Oct 21, 2019
1 parent 43a3492 commit 1d49325
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
7 changes: 5 additions & 2 deletions multiple-domain/MultipleDomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @author Alexander Nosov <https://github.com/cyberaleks>
* @author João Faria <https://github.com/jffaria>
* @author Raphael Stäbler <https://github.com/blazer82>
* @version 0.11.2
* @version 1.0.0
* @package multiple-domain
*/
class MultipleDomain
Expand All @@ -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.
Expand Down Expand Up @@ -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)
{
Expand Down Expand Up @@ -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')
{
Expand All @@ -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()
{
Expand Down
2 changes: 1 addition & 1 deletion multiple-domain/MultipleDomainSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Integration with WordPress admin.
*
* @author Gustavo Straube <https://github.com/straube>
* @version 0.11.2
* @version 1.0.0
* @since 0.11.0
* @package multiple-domain
*/
Expand Down
2 changes: 1 addition & 1 deletion multiple-domain/multiple-domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions multiple-domain/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1d49325

Please sign in to comment.