Skip to content

Commit

Permalink
Release 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Mar 21, 2023
1 parent e03a712 commit c8ffab6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion include/nonstd/expected.hpp
Expand Up @@ -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)

Expand Down

0 comments on commit c8ffab6

Please sign in to comment.