From 338d8065f1b681da841fa0d79cc9265776ff1e1e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 13 Jun 2018 22:20:15 +0300 Subject: Default standard version epoch to one --- libbutl/standard-version.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libbutl/standard-version.cxx') diff --git a/libbutl/standard-version.cxx b/libbutl/standard-version.cxx index dbf6f30..e4180d1 100644 --- a/libbutl/standard-version.cxx +++ b/libbutl/standard-version.cxx @@ -226,7 +226,10 @@ namespace butl (p == n || s[p] == '+')); if (stub) + { + r.epoch = 0; r.version = uint64_t (~0); + } else { if (s[p] != '.') @@ -499,7 +502,7 @@ namespace butl { std::string r; - if (epoch != 0) + if (epoch != 1 && !stub ()) { r += '+'; r += to_string (epoch); -- cgit v1.1