Maki
Loading...
Searching...
No Matches
version.hpp
1//Copyright Florian Goujeon 2021 - 2025.
2//Distributed under the Boost Software License, Version 1.0.
3//(See accompanying file LICENSE or copy at
4//https://www.boost.org/LICENSE_1_0.txt)
5//Official repository: https://github.com/fgoujeon/maki
6
11
12#ifndef MAKI_VERSION_HPP
13#define MAKI_VERSION_HPP
14
15namespace maki::version
16{
17
18constexpr auto major = 0;
19constexpr auto minor = 4;
20constexpr auto patch = 7;
21
22} //namespace
23
24#endif