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

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Neargye committed Jun 20, 2021
1 parent 99ccc4e commit d8960c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.8)
cmake_minimum_required(VERSION 3.14)

project(state_saver VERSION "0.9.0" LANGUAGES CXX)
project(state_saver VERSION "0.9.1" LANGUAGES CXX)

if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
set(IS_TOPLEVEL_PROJECT TRUE)
Expand Down Expand Up @@ -32,7 +32,8 @@ target_include_directories(${PROJECT_NAME}

write_basic_package_version_file(${PROJECT_NAME}ConfigVersion.cmake
VERSION ${PROJECT_VERSION}
COMPATIBILITY AnyNewerVersion)
COMPATIBILITY AnyNewerVersion
ARCH_INDEPENDENT)

if(STATE_SAVER_OPT_INSTALL)
install(TARGETS ${PROJECT_NAME}
Expand Down
4 changes: 2 additions & 2 deletions include/state_saver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// ____) | || (_| | || __/ ____) | (_| |\ V / __/ | | |____|_| |_|
// |_____/ \__\__,_|\__\___| |_____/ \__,_| \_/ \___|_| \_____|
// https://github.com/Neargye/state_saver
// version 0.9.0
// version 0.9.1
//
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
// SPDX-License-Identifier: MIT
Expand Down Expand Up @@ -34,7 +34,7 @@

#define STATE_SAVER_VERSION_MAJOR 0
#define STATE_SAVER_VERSION_MINOR 9
#define STATE_SAVER_VERSION_PATCH 0
#define STATE_SAVER_VERSION_PATCH 1

#include <type_traits>
#if (defined(_MSC_VER) && _MSC_VER >= 1900) || ((defined(__clang__) || defined(__GNUC__)) && __cplusplus >= 201700L)
Expand Down

0 comments on commit d8960c0

Please sign in to comment.