Skip to content

Commit 9b19aa3

Browse files
committed
Get ready for 5.6.0 release
- Update copyrights to 2015 - Set version to 5.6.0 - Update release notes
1 parent e86fc96 commit 9b19aa3

38 files changed

Lines changed: 70 additions & 44 deletions

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/readme.md")
8181
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/description.txt")
8282

8383
set(CPACK_PACKAGE_VERSION_MAJOR 5)
84-
set(CPACK_PACKAGE_VERSION_MINOR 5)
85-
set(CPACK_PACKAGE_VERSION_PATCH 1)
84+
set(CPACK_PACKAGE_VERSION_MINOR 6)
85+
set(CPACK_PACKAGE_VERSION_PATCH 0)
8686

8787
set(CPACK_PACKAGE_EXECUTABLES "chai;ChaiScript Eval")
8888
set(CPACK_PACKAGE_VENDOR "ChaiScript.com")

include/chaiscript/chaiscript.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_HPP_

include/chaiscript/chaiscript_defines.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_DEFINES_HPP_
@@ -17,7 +17,7 @@
1717
#endif
1818

1919
#if (defined(__GNUC__) && __GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
20-
/// Currently only g++>=4.8supports this natively
20+
/// Currently only g++>=4.8 supports this natively
2121
/// \todo Make this support other compilers when possible
2222
#define CHAISCRIPT_HAS_THREAD_LOCAL
2323
#endif
@@ -45,8 +45,8 @@
4545

4646
namespace chaiscript {
4747
static const int version_major = 5;
48-
static const int version_minor = 5;
49-
static const int version_patch = 1;
48+
static const int version_minor = 6;
49+
static const int version_patch = 0;
5050
}
5151

5252
#endif

include/chaiscript/chaiscript_threading.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_THREADING_HPP_

include/chaiscript/dispatchkit/bad_boxed_cast.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_BAD_BOXED_CAST_HPP_

include/chaiscript/dispatchkit/bind_first.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_BIND_FIRST_HPP_

include/chaiscript/dispatchkit/bootstrap.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_BOOTSTRAP_HPP_

include/chaiscript/dispatchkit/bootstrap_stl.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
/// \file

include/chaiscript/dispatchkit/boxed_cast.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_BOXED_CAST_HPP_

include/chaiscript/dispatchkit/boxed_cast_helper.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file is distributed under the BSD License.
22
// See "license.txt" for details.
33
// Copyright 2009-2012, Jonathan Turner (jonathan@emptycrate.com)
4-
// Copyright 2009-2014, Jason Turner (jason@emptycrate.com)
4+
// Copyright 2009-2015, Jason Turner (jason@emptycrate.com)
55
// http://www.chaiscript.com
66

77
#ifndef CHAISCRIPT_BOXED_CAST_HELPER_HPP_

0 commit comments

Comments
 (0)