From e5184de86940aae8b61a7578ced3ac02a5639657 Mon Sep 17 00:00:00 2001 From: Matthew Rodusek Date: Sun, 19 Jul 2020 11:05:58 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Prepare=20for=20version=201.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The recent changes made on master will be bundled into the next release of Backport, which is version 1.2.0. The version numbers have been prepped in both the conanfile and the CMakeLists.txt --- CMakeLists.txt | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16d72b0..047f1bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ if (NOT CMAKE_TESTING_ENABLED AND BACKPORT_COMPILE_UNIT_TESTS) endif () project(Backport - VERSION "1.1.0" + VERSION "1.2.0" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 0b036e5..ec52313 100644 --- a/conanfile.py +++ b/conanfile.py @@ -6,7 +6,7 @@ class BackportConan(ConanFile): # Package Info name = "Backport" - version = "1.1.0" + version = "1.2.0" description = "Modern C++ backported to C++11" url = "https://github.com/bitwizeshift/bpstd" author = "Matthew Rodusek "