From 9ca2ca7db04eef5893611f509f048162b832bb64 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Tue, 20 Jun 2017 17:24:15 -0700 Subject: [PATCH] Set version to 63 --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- include/beast/version.hpp | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd3d67a4..6f1b1e0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Version 63: * Use std::to_string instead of lexical_cast * 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 -------------------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index eb14554c..a58220e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.5.2) -project (Beast VERSION 62) +project (Beast VERSION 63) set_property (GLOBAL PROPERTY USE_FOLDERS ON) diff --git a/include/beast/version.hpp b/include/beast/version.hpp index 08c7f5a7..4fba3992 100644 --- a/include/beast/version.hpp +++ b/include/beast/version.hpp @@ -18,7 +18,7 @@ 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. */ -#define BEAST_VERSION 62 +#define BEAST_VERSION 63 #define BEAST_VERSION_STRING "Beast/" BOOST_STRINGIZE(BEAST_VERSION)