File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 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.9 .0
14+ VERSION 0.10 .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.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"
Original file line number Diff line number Diff line change 66# (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77
88if ( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
9- cmake_minimum_required ( VERSION 3.8 FATAL_ERROR )
9+ cmake_minimum_required ( VERSION 3.15 FATAL_ERROR )
1010endif ()
1111
1212project ( example LANGUAGES CXX )
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments