diff --git a/CMakeLists.txt b/CMakeLists.txt index 632f297..5bf48e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( any_lite - VERSION 0.2.0 + VERSION 0.3.0 # 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" # HOMEPAGE_URL "https://github.com/martinmoene/any-lite" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 9524b36..c3f6f10 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class AnyLiteConan(ConanFile): - version = "0.2.0" + version = "0.3.0" name = "any-lite" 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" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/nonstd/any.hpp b/include/nonstd/any.hpp index 7ec53e2..8110a3e 100644 --- a/include/nonstd/any.hpp +++ b/include/nonstd/any.hpp @@ -12,7 +12,7 @@ #define NONSTD_ANY_LITE_HPP #define any_lite_MAJOR 0 -#define any_lite_MINOR 2 +#define any_lite_MINOR 3 #define any_lite_PATCH 0 #define any_lite_VERSION any_STRINGIFY(any_lite_MAJOR) "." any_STRINGIFY(any_lite_MINOR) "." any_STRINGIFY(any_lite_PATCH)