Skip to content

Commit

Permalink
version: Bump to 1.0.0, last release was 8 years ago!
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Mar 8, 2022
1 parent ae05476 commit e6fcb32
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 1.0.0
=============
* Large number of fixes to widgets/drawing/sdl2 support
* New widget InputBox
* Memory leak fixes in MessageBox example
* Python 3 fixes
* Stability fixes

Version 0.9.0
=============
* Guisan forked from Guisan
Expand Down
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 = 0.9.0
PROJECT_NUMBER = 1.0.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"] = "0.9.0"
env["LIBVER"] = "1.0.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 "0.9.0";
return "1.0.0";
}
}

0 comments on commit e6fcb32

Please sign in to comment.