diff --git a/ChangeLog.md b/ChangeLog.md index f9387e4..a970b24 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,13 @@ ChangeLog ========= +4.0.0 (2015-??-??) +------------------ + +* #41: Fixing bugs related to comparing URLs in `Request::getPath()`. +* #41: This library now uses the `sabre/uri` package for uri handling. + + 3.0.4 (2014-12-10) ------------------ diff --git a/README.md b/README.md index a749b6b..e595565 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Build status | branch | status | | ------ | ------ | | master | [![Build Status](https://travis-ci.org/fruux/sabre-http.png?branch=master)](https://travis-ci.org/fruux/sabre-http) | +| 3.0 | [![Build Status](https://travis-ci.org/fruux/sabre-http.png?branch=3.0)](https://travis-ci.org/fruux/sabre-http) | Installation ------------ diff --git a/lib/Version.php b/lib/Version.php index c5d5d42..2c11a08 100644 --- a/lib/Version.php +++ b/lib/Version.php @@ -14,6 +14,6 @@ class Version { /** * Full version number */ - const VERSION = '3.0.4'; + const VERSION = '4.0.0'; }