mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-14 16:15:51 +00:00
Set Beast version to 1.0.0-b2
This commit is contained in:
1
TODO.txt
1
TODO.txt
@@ -29,3 +29,4 @@
|
|||||||
* Fix method, use string instead of enum
|
* Fix method, use string instead of enum
|
||||||
* More fine grained parser errors
|
* More fine grained parser errors
|
||||||
* Fix all the warnings in all projects/build configs
|
* Fix all the warnings in all projects/build configs
|
||||||
|
* Fix bidirectional buffers iterators operator->()
|
||||||
|
|||||||
21
include/beast/version.hpp
Normal file
21
include/beast/version.hpp
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
//
|
||||||
|
// 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-b2"
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user