Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Commit

Permalink
Updated version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuhlmann committed Sep 11, 2013
1 parent d0ac02c commit 5ab19e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = "Gainput"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = "v0.8.0-beta"
PROJECT_NUMBER = "v0.9.0-beta"

# 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
Expand Down
4 changes: 2 additions & 2 deletions lib/source/gainput/gainput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,13 @@ GetLibName()
uint32_t
GetLibVersion()
{
return ((0 << GAINPUT_VER_MAJOR_SHIFT) | (8) );
return ((0 << GAINPUT_VER_MAJOR_SHIFT) | (9) );
}

const char*
GetLibVersionString()
{
return "0.8.0-beta";
return "0.9.0-beta";
}

}
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
# encoding: utf-8

VERSION='0.8.0-beta'
VERSION='0.9.0-beta'
APPNAME='gainput'

top = '.'
Expand Down

0 comments on commit 5ab19e4

Please sign in to comment.