Yaffs site version 1.1
[yaffs-website] / vendor / webmozart / path-util / CHANGELOG.md
1 Changelog
2 =========
3
4 * 2.3.0 (2015-12-17)
5
6  * added `Url::makeRelative()` for calculating relative paths between URLs
7  * fixed `Path::makeRelative()` to trim leading dots when moving outside of
8    the base path
9
10 * 2.2.3 (2015-10-05)
11
12  * fixed `Path::makeRelative()` to produce `..` when called with the parent
13    directory of a path
14
15 * 2.2.2 (2015-08-24)
16
17  * `Path::makeAbsolute()` does not fail anymore if an absolute path is passed
18    with a different root (partition) than the base path
19
20 * 2.2.1 (2015-08-24)
21
22  * fixed minimum versions in composer.json
23
24 * 2.2.0 (2015-08-14)
25
26  * added `Path::normalize()`
27
28 * 2.1.0 (2015-07-14)
29
30  * `Path::canonicalize()` now turns `~` into the user's home directory on
31    Unix and Windows 8 or later.
32
33 * 2.0.0 (2015-05-21)
34
35  * added support for streams, e.g. "phar://C:/path/to/file"
36  * added `Path::join()`
37  * all `Path` methods now throw exceptions if parameters with invalid types are 
38    passed
39  * added an internal buffer to `Path::canonicalize()` in order to increase the
40    performance of the `Path` class
41
42 * 1.1.0 (2015-03-19)
43
44  * added `Path::getFilename()`
45  * added `Path::getFilenameWithoutExtension()`
46  * added `Path::getExtension()`
47  * added `Path::hasExtension()`
48  * added `Path::changeExtension()`
49  * `Path::makeRelative()` now works when the absolute path and the base path
50    have equal directory names beneath different base directories
51    (e.g. "/webmozart/css/style.css" relative to "/puli/css")
52    
53 * 1.0.2 (2015-01-12)
54
55  * `Path::makeAbsolute()` fails now if the base path is not absolute
56  * `Path::makeRelative()` now works when a relative path is passed and the base
57    path is empty
58
59 * 1.0.1 (2014-12-03)
60
61  * Added PHP 5.6 to Travis.
62  * Fixed bug in `Path::makeRelative()` when first argument is shorter than second
63  * Made HHVM compatibility mandatory in .travis.yml
64  * Added PHP 5.3.3 to travis.yml
65
66 * 1.0.0 (2014-11-26)
67
68  * first release