Skip to content

Commit

Permalink
Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Oct 4, 2020
1 parent fabd391 commit a77cc10
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.5 FATAL_ERROR )

project(
string_view_lite
VERSION 1.5.0
VERSION 1.5.1
# DESCRIPTION "A C++17-like string_view for C++98, C++11 and later in a single-file header-only library"
# HOMEPAGE_URL "https://github.com/martinmoene/string-view-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 StringViewLiteConan(ConanFile):
version = "1.5.0"
version = "1.5.1"
name = "string-view-lite"
description = "string-view"
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/string_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#define string_view_lite_MAJOR 1
#define string_view_lite_MINOR 5
#define string_view_lite_PATCH 0
#define string_view_lite_PATCH 1

#define string_view_lite_VERSION nssv_STRINGIFY(string_view_lite_MAJOR) "." nssv_STRINGIFY(string_view_lite_MINOR) "." nssv_STRINGIFY(string_view_lite_PATCH)

Expand Down

0 comments on commit a77cc10

Please sign in to comment.