File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
1111
1212project (
1313 variant_lite
14- VERSION 1.2.1
14+ VERSION 1.2.2
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 )
Original file line number Diff line number Diff line change 11# variant lite: A single-file header-only version of a C++17-like variant, a type-safe union for C++98, C++11 and later
22
3- [](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [](https://opensource.org/licenses/BSL-1.0) [](https://travis-ci.org/martinmoene/variant-lite) [](https://ci.appveyor.com/project/martinmoene/variant-lite) [](https://github.com/martinmoene/variant-lite/releases) [](https://raw.githubusercontent.com/martinmoene/variant-lite/master/include/nonstd/variant.hpp) [](https://bintray.com/martinmoene/nonstd-lite/variant-lite%3Anonstd-lite/_latestVersion) [](https://wandbox.org/permlink/OyNSGFat1cRbEYxW)
3+ [](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [](https://opensource.org/licenses/BSL-1.0) [](https://travis-ci.org/martinmoene/variant-lite) [](https://ci.appveyor.com/project/martinmoene/variant-lite) [](https://github.com/martinmoene/variant-lite/releases) [](https://raw.githubusercontent.com/martinmoene/variant-lite/master/include/nonstd/variant.hpp) [](https://bintray.com/martinmoene/nonstd-lite/variant-lite%3Anonstd-lite/_latestVersion) [](https://wandbox.org/permlink/tpG9nmapo2mUKUCo)
44
55** Contents**
66- [ Example usage] ( #example-usage )
Original file line number Diff line number Diff line change 11from conans import ConanFile , CMake
22
33class VariantLiteConan (ConanFile ):
4- version = "1.2.1 "
4+ version = "1.2.2 "
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"
Original file line number Diff line number Diff line change 1212
1313#define variant_lite_MAJOR 1
1414#define variant_lite_MINOR 2
15- #define variant_lite_PATCH 1
15+ #define variant_lite_PATCH 2
1616
1717#define variant_lite_VERSION variant_STRINGIFY (variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH)
1818
Original file line number Diff line number Diff line change 1212
1313#define variant_lite_MAJOR 1
1414#define variant_lite_MINOR 2
15- #define variant_lite_PATCH 1
15+ #define variant_lite_PATCH 2
1616
1717#define variant_lite_VERSION variant_STRINGIFY (variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH)
1818
You can’t perform that action at this time.
0 commit comments