From 9c324c505a1accf21b833fc7e5a239e89cbd913d Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Sat, 4 May 2019 10:28:02 +0200 Subject: [PATCH] Release 1.1.0 --- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- include/nonstd/optional.hpp | 2 +- project/CodeBlocks/optional-bare.cbp | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8df8a8..a57ddbd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( optional_bare - VERSION 1.0.0 + VERSION 1.1.0 # DESCRIPTION "A simple version of a C++17-like optional for default-constructible, copyable types, for C++98 and later in a single-file header-only library" # HOMEPAGE_URL "https://github.com/martinmoene/optional-bare" LANGUAGES CXX ) diff --git a/README.md b/README.md index bb4d632..e31b33f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # optional bare: A simple single-file header-only version of a C++17-like optional for default-constructible, copyable types, for C++98 and later -[![Language](https://img.shields.io/badge/C%2B%2B-98-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/optional-bare.svg?branch=master)](https://travis-ci.org/martinmoene/optional-bare) [![Build status](https://ci.appveyor.com/api/projects/status/xl1lrm4cfdi08431?svg=true)](https://ci.appveyor.com/project/martinmoene/optional-bare) [![Version](https://badge.fury.io/gh/martinmoene%2Foptional-bare.svg)](https://github.com/martinmoene/optional-bare/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/optional-bare/master/include/nonstd/optional.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/nonstd-lite/optional-bare%3Anonstd-lite/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/IM16By9WyiwFifCw) +[![Language](https://img.shields.io/badge/C%2B%2B-98-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/optional-bare.svg?branch=master)](https://travis-ci.org/martinmoene/optional-bare) [![Build status](https://ci.appveyor.com/api/projects/status/xl1lrm4cfdi08431?svg=true)](https://ci.appveyor.com/project/martinmoene/optional-bare) [![Version](https://badge.fury.io/gh/martinmoene%2Foptional-bare.svg)](https://github.com/martinmoene/optional-bare/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/optional-bare/master/include/nonstd/optional.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/nonstd-lite/optional-bare%3Anonstd-lite/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/zPhGkdPVU1OpHnu8) **Contents** - [Example usage](#example-usage) diff --git a/conanfile.py b/conanfile.py index c1a3e5e..6a5bde6 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class OptionalBareConan(ConanFile): - version = "1.0.0" + version = "1.1.0" name = "optional-bare" description = "A simple version of a C++17-like optional for default-constructible, copyable types, for C++98 and later in a single-file header-only library" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/optional.hpp b/include/nonstd/optional.hpp index fa32fae..8d85f5c 100644 --- a/include/nonstd/optional.hpp +++ b/include/nonstd/optional.hpp @@ -10,7 +10,7 @@ #define NONSTD_OPTIONAL_BARE_HPP #define optional_bare_MAJOR 1 -#define optional_bare_MINOR 0 +#define optional_bare_MINOR 1 #define optional_bare_PATCH 0 #define optional_bare_VERSION optional_STRINGIFY(optional_bare_MAJOR) "." optional_STRINGIFY(optional_bare_MINOR) "." optional_STRINGIFY(optional_bare_PATCH) diff --git a/project/CodeBlocks/optional-bare.cbp b/project/CodeBlocks/optional-bare.cbp index d94f331..814a8f2 100644 --- a/project/CodeBlocks/optional-bare.cbp +++ b/project/CodeBlocks/optional-bare.cbp @@ -21,6 +21,7 @@ +