Time to begin work on Ocarina 6.3!

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2014-10-31 08:16:38 -04:00
parent 3715e79401
commit e6e9fb08d0
3 changed files with 5 additions and 5 deletions

2
DESIGN
View File

@ -1,6 +1,6 @@
===============================================================================
= =
= Ocarina 6.2 =
= Ocarina 6.3 =
= =
===============================================================================

View File

@ -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

View File

@ -5,9 +5,9 @@
#include <tests/test.h>
#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()