summaryrefslogtreecommitdiff
path: root/Changes
blob: fc173c343b06ba7c5f26791eadc939c9d8282b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Revision history for Perl extension SemVer.

0.7.0  2018-07-24T11:09:17Z
	- Implemented Semantic Versioning 2.0.0 specification
	- Updated tests for Semantic Versioning 2.0.0
	- added testing for Perl 5.24, 5.26, 5.28

0.6.0  2015-01-23T05:07:58Z
      - Removed tests that fail on version.pm 0.9910 and higher due to
        trailing decimal sign. Thanks to Andreas Koenig for the report and
        diagnosis.
      - Fixed vstring warning on Perl 5.8.
      - Now skip tests that fail with version::vpp.
      - Now skip test on version.pm 0.9911 that fails with that version.
      - Now skip failing tests on Perl 5.8 and version.pm less than 0.9909.
      - Removed all Pod tests from the distribution.

0.5.0  2013-04-02T06:57:06Z
      - The `new()` now throws an exception when a version string has a
        prerelease version with no preceding dash. This is keep its
        requirement for strictness consistent.
      - Fixed a bug where a SemVer object passed to `new()` did not properly
        clone the dash preceding a prerelease version.

0.4.0  2012-11-20T18:59:33Z
      - Updated the parsers to support an optional dash before the prerelease
        version, and `normal()` to always emit a dash for the prerelease
        version. This brings it in line with the final semver 1.0.0
        specification.

0.3.0  2011-05-26T04:54:50
      - Made leading zeros, such as the "04" in "1.04.3" illegal when parsing
        via `new()`.
      - Eliminted "Use of qw(...) as parentheses is deprecated" in the tests
        when running on Perl 5.14.

0.2.0  2010-09-17T17:59:57
      - Require Test::Pod 1.41 for testing POD because it supports
        `L<text|url>`.

0.1.0  2010-09-16T19:07:04
      - Initial version, created with lots of help and feedback from
        version.pm author John Peacock