File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1111
1212project (
1313 expected_lite
14- VERSION 0.8 .0
14+ VERSION 0.9 .0
1515 LANGUAGES CXX )
1616
1717set (PROJECT_DESCRIPTION "Expected objects in C++11 and later in a single-file header-only library" )
Original file line number Diff line number Diff line change 11from conans import ConanFile , CMake
22
33class 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"
Original file line number Diff line number Diff line change 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)
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)
You can’t perform that action at this time.
0 commit comments