summaryrefslogtreecommitdiffstats
path: root/src/core/version.cc
blob: 74c67c4522a231789e10d58114ad993d1d1d4971 (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 = "33eb183a";
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-33eb183a";