From 077aaca6f710961fbd05cc65abcbd752aedf972b Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 16 Jul 2016 23:18:23 +0200 Subject: [PATCH] Updated version --- CMakeLists.txt | 2 +- glm/detail/setup.hpp | 6 +++--- readme.md | 4 +++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2fb0b506..75fc5211 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ if (NOT CMAKE_VERSION VERSION_LESS "3.1") endif() project(glm) -set(GLM_VERSION "0.9.8") +set(GLM_VERSION "0.9.9") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") diff --git a/glm/detail/setup.hpp b/glm/detail/setup.hpp index 2cfa97a9..338b9805 100644 --- a/glm/detail/setup.hpp +++ b/glm/detail/setup.hpp @@ -10,15 +10,15 @@ /////////////////////////////////////////////////////////////////////////////////// // Version -#define GLM_VERSION 98 +#define GLM_VERSION 99 #define GLM_VERSION_MAJOR 0 #define GLM_VERSION_MINOR 9 -#define GLM_VERSION_PATCH 8 +#define GLM_VERSION_PATCH 9 #define GLM_VERSION_REVISION 0 #if(defined(GLM_MESSAGES) && !defined(GLM_MESSAGE_VERSION_DISPLAYED)) # define GLM_MESSAGE_VERSION_DISPLAYED -# pragma message ("GLM: version 0.9.8.0") +# pragma message ("GLM: version 0.9.9.0") #endif//GLM_MESSAGES // Report compiler detection diff --git a/readme.md b/readme.md index 5e313816..92697d66 100644 --- a/readme.md +++ b/readme.md @@ -51,7 +51,9 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate) ## Release notes -#### [GLM 0.9.8.0](https://github.com/g-truc/glm/releases/latest) - 2016-XX-XX +#### [GLM 0.9.9.0](https://github.com/g-truc/glm/releases/latest) - 2017-XX-XX + +#### [GLM 0.9.8.0](https://github.com/g-truc/glm/tree/0.9.8) - 2016-XX-XX ##### Features: - Added right and left handed projection and clip control support #447 #415 #119 - Added compNormalize and compScale functions to GTX_component_wise