diff --git a/Doxyfile b/Doxyfile index 8c49ce1..f128b29 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Guisan" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.0.0 +PROJECT_NUMBER = 1.1.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/SConstruct b/SConstruct index 84875c5..ade8d19 100644 --- a/SConstruct +++ b/SConstruct @@ -6,7 +6,7 @@ env["CC"] = os.getenv("CC") or env["CC"] env["CXX"] = os.getenv("CXX") or env["CXX"] env["ENV"].update(x for x in os.environ.items() if x[0].startswith("CCC_")) -env["LIBVER"] = "1.0.0" +env["LIBVER"] = "1.1.0" env["PREFIX_PATH"] = ARGUMENTS.get('prefix', "/usr/local") env["INCLUDE_PATH"] = ARGUMENTS.get('include', env['PREFIX_PATH'] + "/include") diff --git a/src/guisan.cpp b/src/guisan.cpp index 43b9bc2..de78470 100644 --- a/src/guisan.cpp +++ b/src/guisan.cpp @@ -63,6 +63,6 @@ extern "C" { const char* gcnGuisanVersion() { - return "1.0.0"; + return "1.1.0"; } }