From 8bc7b9bfa1abb9ab5fbf2599bd870fc4a3feaf75 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Fri, 25 May 2018 16:49:57 -0600 Subject: [PATCH] Add notes for v6.1.0 release prep --- CMakeLists.txt | 2 +- include/chaiscript/chaiscript_defines.hpp | 2 +- releasenotes.md | 13 ++++++++++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb43087c..04f943bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,7 @@ set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/readme.md") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/description.txt") set(CPACK_PACKAGE_VERSION_MAJOR 6) -set(CPACK_PACKAGE_VERSION_MINOR 0) +set(CPACK_PACKAGE_VERSION_MINOR 1) set(CPACK_PACKAGE_VERSION_PATCH 0) set(CPACK_PACKAGE_EXECUTABLES "chai;ChaiScript Eval") diff --git a/include/chaiscript/chaiscript_defines.hpp b/include/chaiscript/chaiscript_defines.hpp index d3a74d78..4508d603 100644 --- a/include/chaiscript/chaiscript_defines.hpp +++ b/include/chaiscript/chaiscript_defines.hpp @@ -76,7 +76,7 @@ static_assert(_MSC_FULL_VER >= 190024210, "Visual C++ 2015 Update 3 or later req namespace chaiscript { static const int version_major = 6; - static const int version_minor = 0; + static const int version_minor = 1; static const int version_patch = 0; static const char *compiler_version = CHAISCRIPT_COMPILER_VERSION; diff --git a/releasenotes.md b/releasenotes.md index 9951e753..41b6af19 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,6 +1,17 @@ Notes: ======= -Current Version: 6.0.0 +Current Version: 6.1.0 + +### Changes since 6.0.0 + + * Add namespacing support #290 @stephenberry + * Add utf parsing support + * cheatsheet.md updates + * `add_class` utility support for scoped enums #306 @StanEpp + * Parser optimizations #300 @niXman + * Various JSON fixes #377 #400 #409 #371 @totalgee @dinghram @arcoRocks + * Various cleanups, bugfixes and warning fixes and minor performance improvements + * Support for C++17 compilers! ### Changes since 5.8.6