From 2987dd8d3b8fe7c861e3c3f879234cc1c412f03f Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Thu, 8 Jul 2021 18:17:32 +0200 Subject: [PATCH] Release 0.10.0 fixes #65, #67, #68 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/nonstd/span.hpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ae7ee6..7e7045e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( span_lite - VERSION 0.9.2 + VERSION 0.10.0 # DESCRIPTION "A C++20-like span for C++98, C++11 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/span-lite" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 87911eb..8427acf 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class SpanLiteConan(ConanFile): - version = "0.9.2" + version = "0.10.0" name = "span-lite" description = "A C++20-like span for C++98, C++11 and later in a single-file header-only library" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/span.hpp b/include/nonstd/span.hpp index 22d0e69..f3f6062 100644 --- a/include/nonstd/span.hpp +++ b/include/nonstd/span.hpp @@ -12,8 +12,8 @@ #define NONSTD_SPAN_HPP_INCLUDED #define span_lite_MAJOR 0 -#define span_lite_MINOR 9 -#define span_lite_PATCH 2 +#define span_lite_MINOR 10 +#define span_lite_PATCH 0 #define span_lite_VERSION span_STRINGIFY(span_lite_MAJOR) "." span_STRINGIFY(span_lite_MINOR) "." span_STRINGIFY(span_lite_PATCH)