diff --git a/CMakeLists.txt b/CMakeLists.txt index d4e90c9..e539156 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( expected_lite - VERSION 0.6.2 + VERSION 0.6.3 # DESCRIPTION "Expected objects in C++11 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/expected-lite" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 78b0757..62bc619 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class ExpectedLiteConan(ConanFile): - version = "0.6.2" + version = "0.6.3" name = "expected-lite" description = "Expected objects for C++11 and later" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/expected.hpp b/include/nonstd/expected.hpp index 49731ba..a1ddc6f 100644 --- a/include/nonstd/expected.hpp +++ b/include/nonstd/expected.hpp @@ -14,7 +14,7 @@ #define expected_lite_MAJOR 0 #define expected_lite_MINOR 6 -#define expected_lite_PATCH 2 +#define expected_lite_PATCH 3 #define expected_lite_VERSION expected_STRINGIFY(expected_lite_MAJOR) "." expected_STRINGIFY(expected_lite_MINOR) "." expected_STRINGIFY(expected_lite_PATCH)