Skip to content

Commit

Permalink
Updated changelog, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Dec 7, 2016
1 parent e962707 commit 8545a33
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
ChangeLog
=========

1.2.0 (2016-12-06)
------------------

* Now throwing `InvalidUriException` if a uri passed to the `parse` function
is invalid or could not be parsed.
* #11: Fix support for URIs that start with a triple slash. PHP's `parse_uri()`
doesn't support them, so we now have a pure-php fallback in case it fails.
* #9: Fix support for relative URI's that have a non-uri encoded colon `:` in
them.


1.1.1 (2016-10-27)
------------------

Expand Down
2 changes: 1 addition & 1 deletion lib/InvalidUriException.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare (strict_types=1);
<?php

namespace Sabre\Uri;

Expand Down
2 changes: 1 addition & 1 deletion lib/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class Version {
/**
* Full version number
*/
const VERSION = '1.1.1';
const VERSION = '1.2.0';

}

0 comments on commit 8545a33

Please sign in to comment.