From 6c1042c108bacdecce6eeeadcb9c87a75c4d8b2d Mon Sep 17 00:00:00 2001 From: neargye Date: Tue, 23 Feb 2021 17:28:42 +0200 Subject: [PATCH] v0.3.0 --- CMakeLists.txt | 2 +- include/semver.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1faea24..287904a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(semver VERSION "0.2.2" LANGUAGES CXX) +project(semver VERSION "0.3.0" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/include/semver.hpp b/include/semver.hpp index f776050..3d0525c 100644 --- a/include/semver.hpp +++ b/include/semver.hpp @@ -11,7 +11,7 @@ // \ / __/ | \__ \ | (_) | | | | | | | | (_| | | |____|_| |_| // \/ \___|_| |___/_|\___/|_| |_|_|_| |_|\__, | \_____| // https://github.com/Neargye/semver __/ | -// version 0.2.2 |___/ +// version 0.3.0 |___/ // // Licensed under the MIT License . // SPDX-License-Identifier: MIT @@ -39,8 +39,8 @@ #define NEARGYE_SEMANTIC_VERSIONING_HPP #define SEMVER_VERSION_MAJOR 0 -#define SEMVER_VERSION_MINOR 2 -#define SEMVER_VERSION_PATCH 2 +#define SEMVER_VERSION_MINOR 3 +#define SEMVER_VERSION_PATCH 0 #include #include