Skip to content

Commit b33d22b

Browse files
committed
Release 0.6.1 - Fix version number
Release 0.6.0 erroneously carried version number 0.5.0.
1 parent 4aa1777 commit b33d22b

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
@@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
1111

1212
project(
1313
expected_lite
14-
VERSION 0.6.0
14+
VERSION 0.6.1
1515
# DESCRIPTION "Expected objects in C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/expected-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 ExpectedLiteConan(ConanFile):
4-
version = "0.6.0"
4+
version = "0.6.1"
55
name = "expected-lite"
66
description = "Expected objects for C++11 and later"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/nonstd/expected.hpp

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

1515
#define expected_lite_MAJOR 0
1616
#define expected_lite_MINOR 6
17-
#define expected_lite_PATCH 0
17+
#define expected_lite_PATCH 1
1818

1919
#define expected_lite_VERSION expected_STRINGIFY(expected_lite_MAJOR) "." expected_STRINGIFY(expected_lite_MINOR) "." expected_STRINGIFY(expected_lite_PATCH)
2020

0 commit comments

Comments
 (0)