Skip to content

Commit 1783fec

Browse files
committed
Release 0.1.0
1 parent 965bc90 commit 1783fec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cmake_minimum_required( VERSION 3.5 )
99

1010
# value_ptr-lite version, updated by script/update-version.py:
1111

12-
set( value_ptr_lite_version "0.0.0" )
12+
set( value_ptr_lite_version "0.1.0" )
1313

1414
# At default, enable building and performing of tests and building of examples:
1515

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
22

33
class ValuePtrLiteConan(ConanFile):
4-
version = "0.0.0"
4+
version = "0.1.0"
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
@@ -12,7 +12,7 @@
1212
#define NONSTD_VALUE_PTR_LITE_HPP
1313

1414
#define value_ptr_lite_MAJOR 0
15-
#define value_ptr_lite_MINOR 0
15+
#define value_ptr_lite_MINOR 1
1616
#define value_ptr_lite_PATCH 0
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)

0 commit comments

Comments
 (0)