Skip to content

Commit fd33ea5

Browse files
committed
Release 1.2.1 (Conan, thanks to @jgsogo)
1 parent d407405 commit fd33ea5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

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

1212
project(
1313
variant_lite
14-
VERSION 1.2.0
14+
VERSION 1.2.1
1515
# DESCRIPTION "A C++17-like variant, a type-safe union for C++98, C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/variant-lite"
1717
LANGUAGES CXX )

conanfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile, CMake
22

33
class VariantLiteConan(ConanFile):
4-
version = "1.2.0"
4+
version = "1.2.1"
55
name = "variant-lite"
66
description = "A single-file header-only version of a C++17-like variant, a type-safe union for C++98, C++11 and later"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
@@ -17,8 +17,8 @@ def build(self):
1717
def package(self):
1818
"""Run CMake install"""
1919
cmake = CMake(self)
20-
cmake.definitions["VARIANT_LITE__OPT_BUILD_TESTS"] = "OFF"
21-
cmake.definitions["VARIANT_LITE__OPT_BUILD_EXAMPLES"] = "OFF"
20+
cmake.definitions["VARIANT_LITE_OPT_BUILD_TESTS"] = "OFF"
21+
cmake.definitions["VARIANT_LITE_OPT_BUILD_EXAMPLES"] = "OFF"
2222
cmake.configure()
2323
cmake.install()
2424

include/nonstd/variant.hpp

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

1313
#define variant_lite_MAJOR 1
1414
#define variant_lite_MINOR 2
15-
#define variant_lite_PATCH 0
15+
#define variant_lite_PATCH 1
1616

1717
#define variant_lite_VERSION variant_STRINGIFY(variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH)
1818

template/variant.hpp

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

1313
#define variant_lite_MAJOR 1
1414
#define variant_lite_MINOR 2
15-
#define variant_lite_PATCH 0
15+
#define variant_lite_PATCH 1
1616

1717
#define variant_lite_VERSION variant_STRINGIFY(variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH)
1818

0 commit comments

Comments
 (0)