Skip to content

Commit 8444f70

Browse files
committed
v0.9.1
1 parent 38b90e3 commit 8444f70

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
cmake_minimum_required(VERSION 3.8)
1+
cmake_minimum_required(VERSION 3.14)
22

3-
project(scope_guard VERSION "0.9.0" LANGUAGES CXX)
3+
project(scope_guard VERSION "0.9.1" LANGUAGES CXX)
44

55
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
66
set(IS_TOPLEVEL_PROJECT TRUE)
@@ -32,7 +32,8 @@ target_include_directories(${PROJECT_NAME}
3232

3333
write_basic_package_version_file(${PROJECT_NAME}ConfigVersion.cmake
3434
VERSION ${PROJECT_VERSION}
35-
COMPATIBILITY AnyNewerVersion)
35+
COMPATIBILITY AnyNewerVersion
36+
ARCH_INDEPENDENT)
3637

3738
if(SCOPE_GUARD_OPT_INSTALL)
3839
install(TARGETS ${PROJECT_NAME}

include/scope_guard.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// ____) | (_| (_) | |_) | __/ | |__| | |_| | (_| | | | (_| | | |____|_| |_|
66
// |_____/ \___\___/| .__/ \___| \_____|\__,_|\__,_|_| \__,_| \_____|
77
// | | https://github.com/Neargye/scope_guard
8-
// |_| version 0.9.0
8+
// |_| version 0.9.1
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT
@@ -34,7 +34,7 @@
3434

3535
#define SCOPE_GUARD_VERSION_MAJOR 0
3636
#define SCOPE_GUARD_VERSION_MINOR 9
37-
#define SCOPE_GUARD_VERSION_PATCH 0
37+
#define SCOPE_GUARD_VERSION_PATCH 1
3838

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

0 commit comments

Comments
 (0)