Update version to 6.1.1

This commit is contained in:
Jason Turner 2018-08-15 13:12:36 -06:00
parent 44dab4d45c
commit 3af55d60f2
3 changed files with 7 additions and 3 deletions

View File

@ -100,7 +100,7 @@ set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/description.txt"
set(CPACK_PACKAGE_VERSION_MAJOR 6)
set(CPACK_PACKAGE_VERSION_MINOR 1)
set(CPACK_PACKAGE_VERSION_PATCH 0)
set(CPACK_PACKAGE_VERSION_PATCH 1)
set(CPACK_PACKAGE_EXECUTABLES "chai;ChaiScript Eval")
set(CPACK_PACKAGE_VENDOR "ChaiScript.com")

View File

@ -77,7 +77,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 = 1;
static const int version_patch = 0;
static const int version_patch = 1;
static const char *compiler_version = CHAISCRIPT_COMPILER_VERSION;
static const char *compiler_name = CHAISCRIPT_COMPILER_NAME;

View File

@ -1,6 +1,10 @@
Notes:
=======
Current Version: 6.1.0
Current Version: 6.1.1
### Changes since 6.1.0
* Handle the returning of `&` to `*` types. This specifically comes up with `std::vector<int *>` and similar containers
### Changes since 6.0.0