Skip to content

Commit cbb9c3c

Browse files
committed
Release 0.10.3 fixes #69 and #73
1 parent ccf2351 commit cbb9c3c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.5 FATAL_ERROR )
1111

1212
project(
1313
span_lite
14-
VERSION 0.10.2
14+
VERSION 0.10.3
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 )

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 SpanLiteConan(ConanFile):
4-
version = "0.10.2"
4+
version = "0.10.3"
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"

include/nonstd/span.hpp

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

1414
#define span_lite_MAJOR 0
1515
#define span_lite_MINOR 10
16-
#define span_lite_PATCH 2
16+
#define span_lite_PATCH 3
1717

1818
#define span_lite_VERSION span_STRINGIFY(span_lite_MAJOR) "." span_STRINGIFY(span_lite_MINOR) "." span_STRINGIFY(span_lite_PATCH)
1919

0 commit comments

Comments
 (0)