summaryrefslogtreecommitdiffstats
path: root/src/core/version.cc
blob: 36839415477e2f03c83203d638cf2a5e231171d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "core/pch.hh"

#include "core/version.hh"

// clang-format off
const unsigned short version::major = 16;
const unsigned short version::minor = 0;
const unsigned short version::patch = 1;
// clang-format on

const std::string_view version::commit = "7c2df3b5";
const std::string_view version::branch = "devel";
const std::string_view version::triplet = "16.0.1";

const std::string_view version::full = "16.0.1-7c2df3b5";