Skip to content

Commit a09e768

Browse files
committed
Release 0.2.0
1 parent e29de66 commit a09e768

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.1.0
14+
VERSION 0.2.0
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 )

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.1.0"
4+
version = "0.2.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 1
15+
#define value_ptr_lite_MINOR 2
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)

project/CodeBlocks/value-ptr-lite.cbp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<Unit filename="../../LICENSE.txt" />
2222
<Unit filename="../../README.md" />
2323
<Unit filename="../../appveyor.yml" />
24+
<Unit filename="../../cmake/value_ptr-lite-config-version.cmake.in" />
2425
<Unit filename="../../cmake/value_ptr-lite-config.cmake.in" />
2526
<Unit filename="../../conanfile.py" />
2627
<Unit filename="../../example/01-pimpl-widget.hpp" />

0 commit comments

Comments
 (0)