Skip to content

Commit 3583e95

Browse files
committed
Release 0.10.0 - Add [[nodiscard]] also to expected<void,E>
1 parent 6656728 commit 3583e95

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.15 FATAL_ERROR )
1111

1212
project(
1313
expected_lite
14-
VERSION 0.9.0
14+
VERSION 0.10.0
1515
LANGUAGES CXX )
1616

1717
set(PROJECT_DESCRIPTION "Expected objects in C++11 and later in a single-file header-only library")

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.9.0"
4+
version = "0.10.0"
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"

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77

88
if( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
9-
cmake_minimum_required( VERSION 3.8 FATAL_ERROR )
9+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1010
endif()
1111

1212
project( example LANGUAGES CXX )

include/nonstd/expected.hpp

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

1515
#define expected_lite_MAJOR 0
16-
#define expected_lite_MINOR 9
16+
#define expected_lite_MINOR 10
1717
#define expected_lite_PATCH 0
1818

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

0 commit comments

Comments
 (0)