blob: b03fc2aa398faa20832894573ce4169bd2d85672 (
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 = "e5f6887e";
const std::string_view version::branch = "restor";
const std::string_view version::triplet = "16.0.1";
const std::string_view version::full = "16.0.1-e5f6887e";
|