From b56600428d882f90e891bc15e0676d6c62f79a2d Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Tue, 21 May 2024 12:07:57 +0200 Subject: [PATCH] Release 0.7.0 - enable use of C-array and std::array as container type for class ring --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/nonstd/ring_span.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d5c53a..3b2e3c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.8 FATAL_ERROR ) project( ring_span_lite - VERSION 0.6.0 + VERSION 0.7.0 # DESCRIPTION "A C++yy-like ring_span type for C++98, C++11 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/ring-span-lite" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index ac17e7a..c187edb 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class RingSpanLiteConan(ConanFile): - version = "0.6.0" + version = "0.7.0" name = "ring-span-lite" description = "ring-span" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/ring_span.hpp b/include/nonstd/ring_span.hpp index aa1b0d5..f84479f 100644 --- a/include/nonstd/ring_span.hpp +++ b/include/nonstd/ring_span.hpp @@ -13,7 +13,7 @@ #define NONSTD_RING_SPAN_LITE_HPP #define ring_span_lite_MAJOR 0 -#define ring_span_lite_MINOR 6 +#define ring_span_lite_MINOR 7 #define ring_span_lite_PATCH 0 #define ring_span_lite_VERSION nsrs_STRINGIFY(ring_span_lite_MAJOR) "." nsrs_STRINGIFY(ring_span_lite_MINOR) "." nsrs_STRINGIFY(ring_span_lite_PATCH)