Files
rippled/include/nudb/version.hpp
Vinnie Falco 79159ffd87 Squashed 'src/nudb/' content from commit 00adc6a
git-subtree-dir: src/nudb
git-subtree-split: 00adc6a4f16679a376f40c967f77dfa544c179c1
2016-09-29 19:24:12 -04:00

22 lines
539 B
C++

//
// Copyright (c) 2015-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 NUDB_VERSION_HPP
#define NUDB_VERSION_HPP
// follows http://semver.org
// NUDB_VERSION % 100 is the patch level
// NUDB_VERSION / 100 % 1000 is the minor version
// NUDB_VERSION / 100000 is the major version
//
#define NUDB_VERSION 100000
#define NUDB_VERSION_STRING "1.0.0-b6"
#endif