Chris@0: Changelog Chris@0: ========= Chris@0: Chris@0: * 2.3.0 (2015-12-17) Chris@0: Chris@0: * added `Url::makeRelative()` for calculating relative paths between URLs Chris@0: * fixed `Path::makeRelative()` to trim leading dots when moving outside of Chris@0: the base path Chris@0: Chris@0: * 2.2.3 (2015-10-05) Chris@0: Chris@0: * fixed `Path::makeRelative()` to produce `..` when called with the parent Chris@0: directory of a path Chris@0: Chris@0: * 2.2.2 (2015-08-24) Chris@0: Chris@0: * `Path::makeAbsolute()` does not fail anymore if an absolute path is passed Chris@0: with a different root (partition) than the base path Chris@0: Chris@0: * 2.2.1 (2015-08-24) Chris@0: Chris@0: * fixed minimum versions in composer.json Chris@0: Chris@0: * 2.2.0 (2015-08-14) Chris@0: Chris@0: * added `Path::normalize()` Chris@0: Chris@0: * 2.1.0 (2015-07-14) Chris@0: Chris@0: * `Path::canonicalize()` now turns `~` into the user's home directory on Chris@0: Unix and Windows 8 or later. Chris@0: Chris@0: * 2.0.0 (2015-05-21) Chris@0: Chris@0: * added support for streams, e.g. "phar://C:/path/to/file" Chris@0: * added `Path::join()` Chris@0: * all `Path` methods now throw exceptions if parameters with invalid types are Chris@0: passed Chris@0: * added an internal buffer to `Path::canonicalize()` in order to increase the Chris@0: performance of the `Path` class Chris@0: Chris@0: * 1.1.0 (2015-03-19) Chris@0: Chris@0: * added `Path::getFilename()` Chris@0: * added `Path::getFilenameWithoutExtension()` Chris@0: * added `Path::getExtension()` Chris@0: * added `Path::hasExtension()` Chris@0: * added `Path::changeExtension()` Chris@0: * `Path::makeRelative()` now works when the absolute path and the base path Chris@0: have equal directory names beneath different base directories Chris@0: (e.g. "/webmozart/css/style.css" relative to "/puli/css") Chris@0: Chris@0: * 1.0.2 (2015-01-12) Chris@0: Chris@0: * `Path::makeAbsolute()` fails now if the base path is not absolute Chris@0: * `Path::makeRelative()` now works when a relative path is passed and the base Chris@0: path is empty Chris@0: Chris@0: * 1.0.1 (2014-12-03) Chris@0: Chris@0: * Added PHP 5.6 to Travis. Chris@0: * Fixed bug in `Path::makeRelative()` when first argument is shorter than second Chris@0: * Made HHVM compatibility mandatory in .travis.yml Chris@0: * Added PHP 5.3.3 to travis.yml Chris@0: Chris@0: * 1.0.0 (2014-11-26) Chris@0: Chris@0: * first release