From 61696c128d279a2d8f1581c0e77b0d6009d1927a Mon Sep 17 00:00:00 2001 From: Matthew Rodusek Date: Wed, 20 May 2020 23:04:47 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Update=20version=20to=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With issue #16 being closed successfully, it's time for a new version bump and release to be created. This contains the following changes: * Fixes `bpstd::get` for `tuple` types on gcc-4.9, which otherwise may break in some circumstances * Implements multiple-variant visitation --- CMakeLists.txt | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d205916..25d7f26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ if (NOT CMAKE_TESTING_ENABLED AND BACKPORT_COMPILE_UNIT_TESTS) endif () project(Backport - VERSION "1.0.1" + VERSION "1.1.0" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 8a307c6..0b036e5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -6,7 +6,7 @@ class BackportConan(ConanFile): # Package Info name = "Backport" - version = "1.0.1" + version = "1.1.0" description = "Modern C++ backported to C++11" url = "https://github.com/bitwizeshift/bpstd" author = "Matthew Rodusek "