From e21b15f0bc3dd3f1a745fe89a966a2457e940142 Mon Sep 17 00:00:00 2001 From: Johannes Kuhlmann Date: Wed, 6 Sep 2017 20:54:45 +0200 Subject: [PATCH] Update version number. --- CMakeLists.txt | 4 ++-- Doxyfile | 2 +- LICENSE | 2 +- lib/include/gainput/gainput.h | 2 +- lib/source/gainput/gainput.cpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2b46f54..a443b66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}) diff --git a/Doxyfile b/Doxyfile index c103781..2921c39 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/LICENSE b/LICENSE index 3a4970d..cabf9f9 100644 --- a/LICENSE +++ b/LICENSE @@ -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: diff --git a/lib/include/gainput/gainput.h b/lib/include/gainput/gainput.h index b6153fb..ea67c47 100644 --- a/lib/include/gainput/gainput.h +++ b/lib/include/gainput/gainput.h @@ -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. */ diff --git a/lib/source/gainput/gainput.cpp b/lib/source/gainput/gainput.cpp index 9227a2a..fed2eb3 100644 --- a/lib/source/gainput/gainput.cpp +++ b/lib/source/gainput/gainput.cpp @@ -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"; } }