aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-23 17:50:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-08 16:50:52 +0200
commit02ca7e6b7bb7c01659adba36944e59262f307b06 (patch)
tree44c560888f2912fc5e7dc81173b1cb83a551cd38 /bpkg/package.ixx
parent40b0e4bb4354a6d613f6d678a1995532c83400cd (diff)
Support version release
Diffstat (limited to 'bpkg/package.ixx')
-rw-r--r--bpkg/package.ixx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/package.ixx b/bpkg/package.ixx
index 8d1c219..32d79f4 100644
--- a/bpkg/package.ixx
+++ b/bpkg/package.ixx
@@ -9,7 +9,7 @@ namespace bpkg
inline available_package_id::
available_package_id (string n, const bpkg::version& v)
: name (move (n)),
- version {v.epoch, v.canonical_upstream, v.revision}
+ version {v.epoch, v.canonical_upstream, v.canonical_release, v.revision}
{
}
}