]> git.proxmox.com Git - ceph.git/blame - ceph/src/Beast/include/beast/version.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / Beast / include / beast / version.hpp
CommitLineData
7c673cae
FG
1//
2// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
3//
4// Distributed under the Boost Software License, Version 1.0. (See accompanying
5// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7
8#ifndef BEAST_VERSION_HPP
9#define BEAST_VERSION_HPP
10
11#include <beast/config.hpp>
12
13// follows http://semver.org
14
15// BEAST_VERSION % 100 is the patch level
16// BEAST_VERSION / 100 % 1000 is the minor version
17// BEAST_VERSION / 100000 is the major version
18//
19#define BEAST_VERSION 100000
20
21#define BEAST_VERSION_STRING "1.0.0-b35"
22
23#endif