Skip to content

Commit 49165a3

Browse files
committed
Release 0.2.1 (Conan, thanks to @jgsogo)
1 parent a09e768 commit 49165a3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
1111

1212
project(
1313
value_ptr_lite
14-
VERSION 0.2.0
14+
VERSION 0.2.1
1515
# DESCRIPTION "A C++ smart-pointer with value semantics for C++98, C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/value_ptr-lite"
1717
LANGUAGES CXX )
@@ -35,17 +35,17 @@ endif()
3535

3636
# If toplevel project, enable building and performing of tests, disable building of examples:
3737

38-
option( VALUE_PTR_LITE_BUILD_TEST "Build and perform value_ptr-lite tests" ${value_ptr_IS_TOPLEVEL_PROJECT} )
39-
option( VALUE_PTR_LITE_BUILD_EXAMPLE "Build value_ptr-lite examples" OFF )
38+
option( VALUE_PTR_LITE_OPT_BUILD_TESTS "Build and perform value_ptr-lite tests" ${value_ptr_IS_TOPLEVEL_PROJECT} )
39+
option( VALUE_PTR_LITE_OPT_BUILD_EXAMPLES "Build value_ptr-lite examples" OFF )
4040

4141
# If requested, build and perform tests, build examples:
4242

43-
if ( VALUE_PTR_LITE_BUILD_TEST )
43+
if ( VALUE_PTR_LITE_OPT_BUILD_TESTS )
4444
enable_testing()
4545
add_subdirectory( test )
4646
endif()
4747

48-
if ( VALUE_PTR_LITE_BUILD_EXAMPLE )
48+
if ( VALUE_PTR_LITE_OPT_BUILD_EXAMPLES )
4949
enable_testing()
5050
add_subdirectory( example )
5151
endif()

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile, CMake
22

33
class ValuePtrLiteConan(ConanFile):
4-
version = "0.2.0"
4+
version = "0.2.1"
55
name = "value-ptr-lite"
66
description = "A C++ smart-pointer with value semantics for C++98, C++11 and later"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/nonstd/value_ptr.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#define value_ptr_lite_MAJOR 0
1515
#define value_ptr_lite_MINOR 2
16-
#define value_ptr_lite_PATCH 0
16+
#define value_ptr_lite_PATCH 1
1717

1818
#define value_ptr_lite_VERSION nsvp_STRINGIFY(value_ptr_lite_MAJOR) "." nsvp_STRINGIFY(value_ptr_lite_MINOR) "." nsvp_STRINGIFY(value_ptr_lite_PATCH)
1919

0 commit comments

Comments
 (0)