Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Feb 4, 2024
1 parent 08472c3 commit 50f55c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.8 FATAL_ERROR )

project(
span_lite
VERSION 0.10.3
VERSION 0.11.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 )
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
@@ -1,7 +1,7 @@
from conans import ConanFile, CMake

class SpanLiteConan(ConanFile):
version = "0.10.3"
version = "0.11.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"
Expand Down
4 changes: 2 additions & 2 deletions include/nonstd/span.hpp
Expand Up @@ -12,8 +12,8 @@
#define NONSTD_SPAN_HPP_INCLUDED

#define span_lite_MAJOR 0
#define span_lite_MINOR 10
#define span_lite_PATCH 3
#define span_lite_MINOR 11
#define span_lite_PATCH 0

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

Expand Down

0 comments on commit 50f55c5

Please sign in to comment.