From 7558be05c20b9636512ead83e510b8dabf61870a Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Sat, 1 Jun 2019 15:04:05 +0200 Subject: [PATCH] Release 1.2.2 --- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- include/nonstd/variant.hpp | 2 +- template/variant.hpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 28d1fc4..575d968 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( variant_lite - VERSION 1.2.1 + VERSION 1.2.2 # DESCRIPTION "A C++17-like variant, a type-safe union for C++98, C++11 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/variant-lite" LANGUAGES CXX ) diff --git a/README.md b/README.md index 089593f..67e7122 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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 -[![Language](https://img.shields.io/badge/C%2B%2B-98/11/14/17-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://travis-ci.org/martinmoene/variant-lite.svg?branch=master)](https://travis-ci.org/martinmoene/variant-lite) [![Build status](https://ci.appveyor.com/api/projects/status/w2dgn3fxyrd6vcq8?svg=true)](https://ci.appveyor.com/project/martinmoene/variant-lite) [![Version](https://badge.fury.io/gh/martinmoene%2Fvariant-lite.svg)](https://github.com/martinmoene/variant-lite/releases) [![Latest download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/variant-lite/master/include/nonstd/variant.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/nonstd-lite/variant-lite%3Anonstd-lite/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/OyNSGFat1cRbEYxW) +[![Language](https://img.shields.io/badge/C%2B%2B-98/11/14/17-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://travis-ci.org/martinmoene/variant-lite.svg?branch=master)](https://travis-ci.org/martinmoene/variant-lite) [![Build status](https://ci.appveyor.com/api/projects/status/w2dgn3fxyrd6vcq8?svg=true)](https://ci.appveyor.com/project/martinmoene/variant-lite) [![Version](https://badge.fury.io/gh/martinmoene%2Fvariant-lite.svg)](https://github.com/martinmoene/variant-lite/releases) [![Latest download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/variant-lite/master/include/nonstd/variant.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/nonstd-lite/variant-lite%3Anonstd-lite/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/tpG9nmapo2mUKUCo) **Contents** - [Example usage](#example-usage) diff --git a/conanfile.py b/conanfile.py index 15a0e22..f2abaa7 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class VariantLiteConan(ConanFile): - version = "1.2.1" + version = "1.2.2" name = "variant-lite" description = "A single-file header-only version of a C++17-like variant, a type-safe union for C++98, C++11 and later" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/variant.hpp b/include/nonstd/variant.hpp index 6ee53c9..41852ca 100644 --- a/include/nonstd/variant.hpp +++ b/include/nonstd/variant.hpp @@ -12,7 +12,7 @@ #define variant_lite_MAJOR 1 #define variant_lite_MINOR 2 -#define variant_lite_PATCH 1 +#define variant_lite_PATCH 2 #define variant_lite_VERSION variant_STRINGIFY(variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH) diff --git a/template/variant.hpp b/template/variant.hpp index 91086d3..8e53ff1 100644 --- a/template/variant.hpp +++ b/template/variant.hpp @@ -12,7 +12,7 @@ #define variant_lite_MAJOR 1 #define variant_lite_MINOR 2 -#define variant_lite_PATCH 1 +#define variant_lite_PATCH 2 #define variant_lite_VERSION variant_STRINGIFY(variant_lite_MAJOR) "." variant_STRINGIFY(variant_lite_MINOR) "." variant_STRINGIFY(variant_lite_PATCH)