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

Commit

Permalink
Update version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuhlmann committed Sep 6, 2017
1 parent 7537c38 commit e21b15f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 2.8)
set(GAINPUT_MAJOR_VERSION 0)
set(GAINPUT_MINOR_VERSION 10)
set(GAINPUT_MAJOR_VERSION 1)
set(GAINPUT_MINOR_VERSION 0)
set(GAINPUT_PATCH_VERSION 0)
set(GAINPUT_VERSION ${GAINPUT_MAJOR_VERSION}.${GAINPUT_MINOR_VERSION}.${GAINPUT_PATCH_VERSION})

Expand Down
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.10.0-beta"
PROJECT_NUMBER = "v1.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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2015 Johannes Kuhlmann
Copyright (c) 2013-2017 Johannes Kuhlmann

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion lib/include/gainput/gainput.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Gainput - C++ input library for games.
*
* Copyright (c) 2013-2015 Johannes Kuhlmann.
* Copyright (c) 2013-2017 Johannes Kuhlmann.
* Licensed under the MIT license. See LICENSE file.
*/

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 @@ -370,13 +370,13 @@ GetLibName()
uint32_t
GetLibVersion()
{
return ((0 << GAINPUT_VER_MAJOR_SHIFT) | (10) );
return ((1 << GAINPUT_VER_MAJOR_SHIFT) | (0) );
}

const char*
GetLibVersionString()
{
return "0.10.0-beta";
return "1.0.0";
}

}
Expand Down

0 comments on commit e21b15f

Please sign in to comment.