From e6e9fb08d0684b4ef5663514ba5f6baf1a7046bc Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 31 Oct 2014 08:16:38 -0400 Subject: [PATCH] Time to begin work on Ocarina 6.3! Signed-off-by: Anna Schumaker --- DESIGN | 2 +- Sconstruct | 4 ++-- tests/core/version.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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()