There is a small discrepancy in the format of the reported version number between K installed from git repository and that installed from package.
Git:
% kompile --version
K version: v5.4.7-0-g0b0189cc60
Build date: Tue Sep 27 13:19:45 CEST 2022
Package:
% docker run --rm runtimeverificationinc/kframework-k:ubuntu-focal-5.4.7 kompile --version
K version: 5.4.7
Build date: Mon Sep 26 17:46:17 CDT 2022
It would be more consistent if the packaged version also reported its version number with a prefix v. Then
- parsing / regex matching would be simpler;
- the version number would still indicate whether it's a git or a package install (due to the git version using
--long format of git describe).
There is a small discrepancy in the format of the reported version number between K installed from git repository and that installed from package.
Git:
Package:
It would be more consistent if the packaged version also reported its version number with a prefix
v. Then--longformat ofgit describe).