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.8 FATAL_ERROR )
1111
1212project (
1313 span_lite
14- VERSION 0.10.3
14+ VERSION 0.11.0
1515# DESCRIPTION "A C++20-like span for C++98, C++11 and later in a single-file header-only library"
1616# HOMEPAGE_URL "https://github.com/martinmoene/span-lite"
1717 LANGUAGES CXX )
Original file line number Diff line number Diff line change 11from conans import ConanFile , CMake
22
33class SpanLiteConan (ConanFile ):
4- version = "0.10.3 "
4+ version = "0.11.0 "
55 name = "span-lite"
66 description = "A C++20-like span for C++98, C++11 and later in a single-file header-only library"
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 1212#define NONSTD_SPAN_HPP_INCLUDED
1313
1414#define span_lite_MAJOR 0
15- #define span_lite_MINOR 10
16- #define span_lite_PATCH 3
15+ #define span_lite_MINOR 11
16+ #define span_lite_PATCH 0
1717
1818#define span_lite_VERSION span_STRINGIFY (span_lite_MAJOR) "." span_STRINGIFY(span_lite_MINOR) "." span_STRINGIFY(span_lite_PATCH)
1919
You can’t perform that action at this time.
0 commit comments