Skip to content

Commit

Permalink
Release 0.7.0 - enable use of C-array and std::array as container typ…
Browse files Browse the repository at this point in the history
…e for class ring
  • Loading branch information
martinmoene committed May 21, 2024
1 parent 5ab6850 commit b566004
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion include/nonstd/ring_span.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b566004

Please sign in to comment.