Skip to content

Commit

Permalink
Prepare to v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 committed Oct 10, 2024
1 parent ce13dce commit 8131963
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion src/guisan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ extern "C"
{
const char* gcnGuisanVersion()
{
return "1.0.0";
return "1.1.0";
}
}

0 comments on commit 8131963

Please sign in to comment.