Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Commit

Permalink
prepare 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Nov 2, 2016
1 parent 0b30458 commit 17c5ec8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/HostValidation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @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;
Expand All @@ -20,7 +20,7 @@
* @see https://tools.ietf.org/html/rfc3986
* @package League\Uri
* @author Ignace Nyamagana Butera <[email protected]>
* @since 1.0.0
* @since 0.2.0
*/
trait HostValidation
{
Expand Down
4 changes: 2 additions & 2 deletions src/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @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;
Expand All @@ -20,7 +20,7 @@
* @see https://tools.ietf.org/html/rfc3986
* @package League\Uri
* @author Ignace Nyamagana Butera <[email protected]>
* @since 1.0.0
* @since 0.1.0
*/
final class Parser
{
Expand Down
4 changes: 2 additions & 2 deletions src/ParserException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Ignace Nyamagana Butera <[email protected]>
* @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;
Expand All @@ -20,7 +20,7 @@
* @see https://tools.ietf.org/html/rfc3986
* @package League\Uri
* @author Ignace Nyamagana Butera <[email protected]>
* @since 1.0.0
* @since 0.2.0
*/
class ParserException extends InvalidArgumentException
{
Expand Down

0 comments on commit 17c5ec8

Please sign in to comment.