Skip to content

Commit e6eb5e6

Browse files
committed
Release 2.0.0
1 parent ac454a3 commit e6eb5e6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.2
14+
VERSION 2.0.0
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: 1 addition & 1 deletion
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.2"
4+
version = "2.0.0"
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"

include/nonstd/variant.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#ifndef NONSTD_VARIANT_LITE_HPP
1111
#define NONSTD_VARIANT_LITE_HPP
1212

13-
#define variant_lite_MAJOR 1
14-
#define variant_lite_MINOR 2
15-
#define variant_lite_PATCH 2
13+
#define variant_lite_MAJOR 2
14+
#define variant_lite_MINOR 0
15+
#define variant_lite_PATCH 0
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#ifndef NONSTD_VARIANT_LITE_HPP
1111
#define NONSTD_VARIANT_LITE_HPP
1212

13-
#define variant_lite_MAJOR 1
14-
#define variant_lite_MINOR 2
15-
#define variant_lite_PATCH 2
13+
#define variant_lite_MAJOR 2
14+
#define variant_lite_MINOR 0
15+
#define variant_lite_PATCH 0
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)