Set version to 63

This commit is contained in:
Vinnie Falco
2017-06-20 17:24:15 -07:00
parent ded950a052
commit 9ca2ca7db0
3 changed files with 8 additions and 2 deletions

View File

@@ -2,6 +2,12 @@ Version 63:
* Use std::to_string instead of lexical_cast * Use std::to_string instead of lexical_cast
* Don't use cached Boost * Don't use cached Boost
* Put num_jobs back up on Travis
* Only build and run tests in variant=coverage
* Move benchmarks to a separate project
* Only run the tests under ubasan
* Tidy up CMakeLists.txt
* Tidy up Jamfiles
* Control running with valgrind explicitly * Control running with valgrind explicitly
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@@ -2,7 +2,7 @@
cmake_minimum_required (VERSION 3.5.2) cmake_minimum_required (VERSION 3.5.2)
project (Beast VERSION 62) project (Beast VERSION 63)
set_property (GLOBAL PROPERTY USE_FOLDERS ON) set_property (GLOBAL PROPERTY USE_FOLDERS ON)

View File

@@ -18,7 +18,7 @@
This is a simple integer that is incremented by one every time This is a simple integer that is incremented by one every time
a set of code changes is merged to the master or develop branch. a set of code changes is merged to the master or develop branch.
*/ */
#define BEAST_VERSION 62 #define BEAST_VERSION 63
#define BEAST_VERSION_STRING "Beast/" BOOST_STRINGIZE(BEAST_VERSION) #define BEAST_VERSION_STRING "Beast/" BOOST_STRINGIZE(BEAST_VERSION)