diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8cae0..a755a3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All Notable changes to `league-uri-parser` will be documented in this file +## 0.2.0 - 2016-11-02 + +### Added + +- `ParserException` class which extends SPL `InvalidArgumentException` +- `HostValidation` trait to ease Host validation without the parser + +### Fixed + +- Improve Performance by removing all regular expressions [see issue #2](https://github.com/thephpleague/uri-parser/issues/2) + +### Deprecated + +- None + +### Removed + +- None + ## 0.1.0 - 2016-10-17 ### Added diff --git a/src/HostValidation.php b/src/HostValidation.php index b88a246..dfb35a7 100644 --- a/src/HostValidation.php +++ b/src/HostValidation.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 1.0.0 + * @version 0.2.0 * @link https://github.com/thephpleague/uri-parser/ */ namespace League\Uri; @@ -20,7 +20,7 @@ * @see https://tools.ietf.org/html/rfc3986 * @package League\Uri * @author Ignace Nyamagana Butera - * @since 1.0.0 + * @since 0.2.0 */ trait HostValidation { diff --git a/src/Parser.php b/src/Parser.php index 8b13e62..4f5f233 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 1.0.0 + * @version 0.2.0 * @link https://github.com/thephpleague/uri-parser/ */ namespace League\Uri; @@ -20,7 +20,7 @@ * @see https://tools.ietf.org/html/rfc3986 * @package League\Uri * @author Ignace Nyamagana Butera - * @since 1.0.0 + * @since 0.1.0 */ final class Parser { diff --git a/src/ParserException.php b/src/ParserException.php index 031d2eb..97d6038 100644 --- a/src/ParserException.php +++ b/src/ParserException.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 1.0.0 + * @version 0.2.0 * @link https://github.com/thephpleague/uri-parser/ */ namespace League\Uri; @@ -20,7 +20,7 @@ * @see https://tools.ietf.org/html/rfc3986 * @package League\Uri * @author Ignace Nyamagana Butera - * @since 1.0.0 + * @since 0.2.0 */ class ParserException extends InvalidArgumentException {