0
|
1 # Change Log
|
|
2
|
|
3 All notable changes to this project will be documented in this file.
|
|
4 This project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
|
|
6 ### [1.4.2] 2016-08-30
|
|
7
|
|
8 * Fixed: collapsing of complex constraints lead to buggy constraints
|
|
9
|
|
10 ### [1.4.1] 2016-06-02
|
|
11
|
|
12 * Changed: branch-like requirements no longer strip build metadata - [composer/semver#38](https://github.com/composer/semver/pull/38).
|
|
13
|
|
14 ### [1.4.0] 2016-03-30
|
|
15
|
|
16 * Added: getters on MultiConstraint - [composer/semver#35](https://github.com/composer/semver/pull/35).
|
|
17
|
|
18 ### [1.3.0] 2016-02-25
|
|
19
|
|
20 * Fixed: stability parsing - [composer/composer#1234](https://github.com/composer/composer/issues/4889).
|
|
21 * Changed: collapse contiguous constraints when possible.
|
|
22
|
|
23 ### [1.2.0] 2015-11-10
|
|
24
|
|
25 * Changed: allow multiple numerical identifiers in 'pre-release' version part.
|
|
26 * Changed: add more 'v' prefix support.
|
|
27
|
|
28 ### [1.1.0] 2015-11-03
|
|
29
|
|
30 * Changed: dropped redundant `test` namespace.
|
|
31 * Changed: minor adjustment in datetime parsing normalization.
|
|
32 * Changed: `ConstraintInterface` relaxed, setPrettyString is not required anymore.
|
|
33 * Changed: `AbstractConstraint` marked deprecated, will be removed in 2.0.
|
|
34 * Changed: `Constraint` is now extensible.
|
|
35
|
|
36 ### [1.0.0] 2015-09-21
|
|
37
|
|
38 * Break: `VersionConstraint` renamed to `Constraint`.
|
|
39 * Break: `SpecificConstraint` renamed to `AbstractConstraint`.
|
|
40 * Break: `LinkConstraintInterface` renamed to `ConstraintInterface`.
|
|
41 * Break: `VersionParser::parseNameVersionPairs` was removed.
|
|
42 * Changed: `VersionParser::parseConstraints` allows (but ignores) build metadata now.
|
|
43 * Changed: `VersionParser::parseConstraints` allows (but ignores) prefixing numeric versions with a 'v' now.
|
|
44 * Changed: Fixed namespace(s) of test files.
|
|
45 * Changed: `Comparator::compare` no longer throws `InvalidArgumentException`.
|
|
46 * Changed: `Constraint` now throws `InvalidArgumentException`.
|
|
47
|
|
48 ### [0.1.0] 2015-07-23
|
|
49
|
|
50 * Added: `Composer\Semver\Comparator`, various methods to compare versions.
|
|
51 * Added: various documents such as README.md, LICENSE, etc.
|
|
52 * Added: configuration files for Git, Travis, php-cs-fixer, phpunit.
|
|
53 * Break: the following namespaces were renamed:
|
|
54 - Namespace: `Composer\Package\Version` -> `Composer\Semver`
|
|
55 - Namespace: `Composer\Package\LinkConstraint` -> `Composer\Semver\Constraint`
|
|
56 - Namespace: `Composer\Test\Package\Version` -> `Composer\Test\Semver`
|
|
57 - Namespace: `Composer\Test\Package\LinkConstraint` -> `Composer\Test\Semver\Constraint`
|
|
58 * Changed: code style using php-cs-fixer.
|
|
59
|
|
60 [1.4.1]: https://github.com/composer/semver/compare/1.4.0...1.4.1
|
|
61 [1.4.0]: https://github.com/composer/semver/compare/1.3.0...1.4.0
|
|
62 [1.3.0]: https://github.com/composer/semver/compare/1.2.0...1.3.0
|
|
63 [1.2.0]: https://github.com/composer/semver/compare/1.1.0...1.2.0
|
|
64 [1.1.0]: https://github.com/composer/semver/compare/1.0.0...1.1.0
|
|
65 [1.0.0]: https://github.com/composer/semver/compare/0.1.0...1.0.0
|
|
66 [0.1.0]: https://github.com/composer/semver/compare/5e0b9a4da...0.1.0
|