Skip to content

Commit d05a41a

Browse files
committed
Release 1.1.0
1 parent c877c2b commit d05a41a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 )
77

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

10-
set( string_view_lite_version "1.0.0" )
10+
set( string_view_lite_version "1.1.0" )
1111

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Or, if you use the [conan package manager](https://www.conan.io/), follow these
7272

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

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

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

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

8282
3. Run conan's install command:
8383

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile
22

33
class StringViewLiteConan(ConanFile):
4-
version = "0.0.0"
4+
version = "1.1.0"
55
name = "string-view-lite"
66
description = "string-view"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/nonstd/string_view.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define NONSTD_SV_LITE_H_INCLUDED
1313

1414
#define string_view_lite_MAJOR 1
15-
#define string_view_lite_MINOR 0
15+
#define string_view_lite_MINOR 1
1616
#define string_view_lite_PATCH 0
1717

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

0 commit comments

Comments
 (0)