mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
22 lines
546 B
C++
22 lines
546 B
C++
//
|
|
// Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BEAST_VERSION_HPP
|
|
#define BEAST_VERSION_HPP
|
|
|
|
// follows http://semver.org
|
|
|
|
// BEAST_VERSION % 100 is the patch level
|
|
// BEAST_VERSION / 100 % 1000 is the minor version
|
|
// BEAST_VERSION / 100000 is the major version
|
|
//
|
|
#define BEAST_VERSION 100000
|
|
|
|
#define BEAST_VERSION_STRING "1.0.0-b9"
|
|
|
|
#endif
|