From 95b9cb015fa17baa749c2b396b335906e1596a9e Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Sun, 7 Aug 2022 13:12:17 +0200 Subject: [PATCH] Release 0.6.2 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/nonstd/expected.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b0b0ea..d4e90c9 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.1 + VERSION 0.6.2 # 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 f7c8c94..78b0757 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class ExpectedLiteConan(ConanFile): - version = "0.6.1" + version = "0.6.2" 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 4129e22..f2b7f94 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 1 +#define expected_lite_PATCH 2 #define expected_lite_VERSION expected_STRINGIFY(expected_lite_MAJOR) "." expected_STRINGIFY(expected_lite_MINOR) "." expected_STRINGIFY(expected_lite_PATCH)