Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Oct 28, 2018
1 parent c877c2b commit d05a41a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 )

# string_view-lite version, updated by script/update-version.py:

set( string_view_lite_version "1.0.0" )
set( string_view_lite_version "1.1.0" )

# Enable building and performing of tests and building of examples:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ Or, if you use the [conan package manager](https://www.conan.io/), follow these

1. Add *nonstd-lite* to the conan remotes:

conan remote add nonstd-lite https://api.bintray.com/conan/agauniyal/nonstd-lite
conan remote add nonstd-lite https://api.bintray.com/conan/martinmoene/nonstd-lite

2. Add a reference to *string-view-lite* to the *requires* section of your project's `conanfile.txt` file:

[requires]
string-view-lite/0.2.0@nonstd-lite/stable
string-view-lite/[~=1]@nonstd-lite/testing

3. Run conan's install command:

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

class StringViewLiteConan(ConanFile):
version = "0.0.0"
version = "1.1.0"
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 @@ -12,7 +12,7 @@
#define NONSTD_SV_LITE_H_INCLUDED

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

#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 d05a41a

Please sign in to comment.