diff --git a/DESIGN b/DESIGN index dca822f8..136df7d8 100644 --- a/DESIGN +++ b/DESIGN @@ -1,6 +1,6 @@ =============================================================================== = = -= Ocarina 6.2 = += Ocarina 6.3 = = = =============================================================================== diff --git a/Sconstruct b/Sconstruct index fc7376dd..301fdbde 100644 --- a/Sconstruct +++ b/Sconstruct @@ -2,8 +2,8 @@ import os # Configuration variables -CONFIG_VERSION = "6.2.1" -CONFIG_DEBUG = False +CONFIG_VERSION = "6.3" +CONFIG_DEBUG = True CONFIG_TEST_VALGRIND = False CONFIG_TEST_COVERAGE = False CONFIG_TEST_CPPCHECK = False diff --git a/tests/core/version.cpp b/tests/core/version.cpp index 44db3294..2bbc0592 100644 --- a/tests/core/version.cpp +++ b/tests/core/version.cpp @@ -5,9 +5,9 @@ #include #ifdef CONFIG_DEBUG -const std::string expected = "6.2-debug"; +const std::string expected = "6.3-debug"; #else -const std::string expected = "6.2"; +const std::string expected = "6.3"; #endif /* CONFIG_DEBUG */ static void test_version()