Skip to content

Commit edce3fb

Browse files
committed
Release 0.2.0
1 parent 078edba commit edce3fb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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
type
14-
VERSION 0.1.0
14+
VERSION 0.2.0
1515
# DESCRIPTION "Strong types for C++98, C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/type"
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 TypeLiteConan(ConanFile):
4-
version = "0.1.0"
4+
version = "0.2.0"
55
name = "type-lite"
66
description = "Strong types for C++98, C++11 and later in a single-file header-only library"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

doc/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ As CMake package
125125
```CMake
126126
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
127127

128-
find_package( type-lite "0.1" REQUIRED )
128+
find_package( type-lite "0.2" REQUIRED )
129129

130130
project( program-using-type-lite LANGUAGES CXX )
131131

@@ -154,7 +154,7 @@ For the [conan package manager](https://www.conan.io/), follow these steps:
154154
2. Add a reference to *type-lite* to the *requires* section of your project's `conanfile.txt` file:
155155

156156
[requires]
157-
type-lite 0.1.0@nonstd-lite/stable
157+
type-lite 0.2.0@nonstd-lite/stable
158158

159159
3. Run conan's install command:
160160

include/nonstd/type.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define NONSTD_TYPE_HPP_INCLUDED
1111

1212
#define type_MAJOR 0
13-
#define type_MINOR 1
13+
#define type_MINOR 2
1414
#define type_PATCH 0
1515

1616
#define type_VERSION type_STRINGIFY(type_MAJOR) "." type_STRINGIFY(type_MINOR) "." type_STRINGIFY(type_PATCH)

0 commit comments

Comments
 (0)