Skip to content

Commit d45a83b

Browse files
committed
Release 0.4.0
1 parent e613c49 commit d45a83b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
1111

1212
project(
1313
any_lite
14-
VERSION 0.3.0
14+
VERSION 0.4.0
1515
# DESCRIPTION "A C++17-like any, a type-safe container for single values of any type for C++98, C++11 and later in a single-file header-only library"
1616
# HOMEPAGE_URL "https://github.com/martinmoene/any-lite"
1717
LANGUAGES CXX )

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile, CMake
22

33
class AnyLiteConan(ConanFile):
4-
version = "0.3.0"
4+
version = "0.4.0"
55
name = "any-lite"
66
description = "A single-file header-only C++17-like any, a type-safe container for single values of any type for C++98, C++11 and later"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/nonstd/any.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define NONSTD_ANY_LITE_HPP
1313

1414
#define any_lite_MAJOR 0
15-
#define any_lite_MINOR 3
15+
#define any_lite_MINOR 4
1616
#define any_lite_PATCH 0
1717

1818
#define any_lite_VERSION any_STRINGIFY(any_lite_MAJOR) "." any_STRINGIFY(any_lite_MINOR) "." any_STRINGIFY(any_lite_PATCH)

0 commit comments

Comments
 (0)