mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 18:45:55 +00:00
c00cd37 Set version to 1.0.0-b23 f662e36 Travis CI improvements: b05fa33 Fix message constructor and special members b4722cc Add copy special members 420d1c7 Better logging in async echo server 149e3a2 Add file and line number to thrown exceptions 3e88b83 Tune websocket echo server for performance git-subtree-dir: src/beast git-subtree-split: c00cd37b8a441a92755658014fdde97d515ec7ed
22 lines
547 B
C++
22 lines
547 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-b23"
|
|
|
|
#endif
|