Skip to content

Commit

Permalink
Release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Sep 19, 2021
1 parent 11edaf6 commit c05bdec
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )

project(
optional_lite
VERSION 3.4.0
VERSION 3.5.0
# DESCRIPTION "A C++17-like optional, a nullable object for C++98, C++11 and later in a single-file header-only library"
# HOMEPAGE_URL "https://github.com/martinmoene/optional-lite"
LANGUAGES CXX )
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from conans import ConanFile, CMake

class OptionalLiteConan(ConanFile):
version = "3.4.0"
version = "3.5.0"
name = "optional-lite"
description = "A single-file header-only version of a C++17-like optional, a nullable object for C++98, C++11 and later"
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
Expand Down
4 changes: 2 additions & 2 deletions include/nonstd/optional.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2014-2018 Martin Moene
// Copyright (c) 2014-2021 Martin Moene
//
// https://github.com/martinmoene/optional-lite
//
Expand All @@ -12,7 +12,7 @@
#define NONSTD_OPTIONAL_LITE_HPP

#define optional_lite_MAJOR 3
#define optional_lite_MINOR 4
#define optional_lite_MINOR 5
#define optional_lite_PATCH 0

#define optional_lite_VERSION optional_STRINGIFY(optional_lite_MAJOR) "." optional_STRINGIFY(optional_lite_MINOR) "." optional_STRINGIFY(optional_lite_PATCH)
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "optional-lite",
"version": "3.4.0",
"version": "3.5.0",
"keywords": "std, nonstd, optional, header",
"description": "A single-file header-only version of a C++17-like optional, a nullable object for C++98, C++11 and later",
"license": "BSL-1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/optional-main.t.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2016 Martin Moene
// Copyright 2014-2021 by Martin Moene
//
// https://github.com/martinmoene/optional-lite
//
Expand Down
2 changes: 1 addition & 1 deletion test/optional-main.t.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2016 Martin Moene
// Copyright 2014-2021 by Martin Moene
//
// https://github.com/martinmoene/optional-lite
//
Expand Down
2 changes: 1 addition & 1 deletion test/optional.t.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2014-2018 by Martin Moene
// Copyright 2014-2021 by Martin Moene
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down

0 comments on commit c05bdec

Please sign in to comment.