Skip to content

Commit

Permalink
ready to cut v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Sep 5, 2019
1 parent 6bb4800 commit 0e07482
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ endif()
# Project configuration
#

project(EnTT VERSION 3.1.0)
project(EnTT VERSION 3.1.1)

include(GNUInstallDirs)

Expand Down Expand Up @@ -52,7 +52,7 @@ if(NOT MSVC AND USE_LIBCPP)

check_cxx_source_compiles("
#include<type_traits>
int main() { return std::is_same_v<int, int> ? 0 : 1; }
int main() { return std::is_same_v<int, char>; }
" HAS_LIBCPP)

if(NOT HAS_LIBCPP)
Expand Down
4 changes: 2 additions & 2 deletions src/entt/config/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#define ENTT_CONFIG_VERSION_H


#define ENTT_VERSION "3.1.0"
#define ENTT_VERSION "3.1.1"
#define ENTT_VERSION_MAJOR 3
#define ENTT_VERSION_MINOR 1
#define ENTT_VERSION_PATCH 0
#define ENTT_VERSION_PATCH 1


#endif // ENTT_CONFIG_VERSION_H

0 comments on commit 0e07482

Please sign in to comment.