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