Skip to content

Commit 8545a33

Browse files
committed
Updated changelog, bumped version
1 parent e962707 commit 8545a33

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
ChangeLog
22
=========
33

4+
1.2.0 (2016-12-06)
5+
------------------
6+
7+
* Now throwing `InvalidUriException` if a uri passed to the `parse` function
8+
is invalid or could not be parsed.
9+
* #11: Fix support for URIs that start with a triple slash. PHP's `parse_uri()`
10+
doesn't support them, so we now have a pure-php fallback in case it fails.
11+
* #9: Fix support for relative URI's that have a non-uri encoded colon `:` in
12+
them.
13+
14+
415
1.1.1 (2016-10-27)
516
------------------
617

lib/InvalidUriException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php declare (strict_types=1);
1+
<?php
22

33
namespace Sabre\Uri;
44

lib/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ class Version {
1414
/**
1515
* Full version number
1616
*/
17-
const VERSION = '1.1.1';
17+
const VERSION = '1.2.0';
1818

1919
}

0 commit comments

Comments
 (0)