Skip to content

Commit e45e8d5

Browse files
committed
Release 0.9.0 - Mark expected as [[nodiscard]] (default), control via nsel_CONFIG_NO_NODISCARD
1 parent f17940f commit e45e8d5

File tree

3 files changed

+4
-4
lines changed

3 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.8.0
14+
VERSION 0.9.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.8.0"
4+
version = "0.9.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"

include/nonstd/expected.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This version targets C++11 and later.
22
//
3-
// Copyright (C) 2016-2020 Martin Moene.
3+
// Copyright (C) 2016-2025 Martin Moene.
44
//
55
// Distributed under the Boost Software License, Version 1.0.
66
// (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -13,7 +13,7 @@
1313
#define NONSTD_EXPECTED_LITE_HPP
1414

1515
#define expected_lite_MAJOR 0
16-
#define expected_lite_MINOR 8
16+
#define expected_lite_MINOR 9
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)