----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/58707/ -----------------------------------------------------------
(Updated May 3, 2017, 6:23 p.m.) Review request for mesos, Benjamin Mahler and Kapil Arya. Changes ------- Change handling of prerelease identifiers that start with hyphens. Bugs: MESOS-1987 https://issues.apache.org/jira/browse/MESOS-1987 Repository: mesos Description ------- Previously, Stout's `Version` abstraction only supported a subset of Semver: version numbers with three numeric components (an optional trailing "label" with a leading hyphen was supported but ignored). This commit adds support for SemVer 2.0.0, which defines two additional optional fields: a "prerelease label" and a "build metadata label", e.g., "1.2.3-alpha.1+foo". Both labels consist of a series of dot-separated identifiers. Diffs (updated) ----- 3rdparty/stout/include/stout/version.hpp 7717c85b95d29cefe8f19f3cada4b7402d4d446f 3rdparty/stout/tests/version_tests.cpp 925f3833fd8b1732c35663df3e63c161261e9bff Diff: https://reviews.apache.org/r/58707/diff/7/ Changes: https://reviews.apache.org/r/58707/diff/6-7/ Testing ------- `make check` Thanks, Neil Conway