diff --git a/CMakeLists.txt b/CMakeLists.txt index cca8945..9062690 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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: diff --git a/README.md b/README.md index d5faf03..38b32ed 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/conanfile.py b/conanfile.py index 560dd5c..ca7182f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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" diff --git a/include/nonstd/string_view.hpp b/include/nonstd/string_view.hpp index 0a85fd7..c3a21d7 100644 --- a/include/nonstd/string_view.hpp +++ b/include/nonstd/string_view.hpp @@ -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)