From 96cfdb260aedef3a96a5f9c9e3e107bde94655c1 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Tue, 29 Sep 2020 01:41:38 +0900 Subject: [PATCH] fix: update version in macro and cmake --- CMakeLists.txt | 2 +- toml.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2aa6a6d..5dbeb2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) enable_testing() -project(toml11 VERSION 3.5.0) +project(toml11 VERSION 3.6.0) option(toml11_BUILD_TEST "Build toml tests" OFF) option(toml11_TEST_WITH_ASAN "use LLVM address sanitizer" OFF) diff --git a/toml.hpp b/toml.hpp index ce578b6..232329d 100644 --- a/toml.hpp +++ b/toml.hpp @@ -34,7 +34,7 @@ #endif #define TOML11_VERSION_MAJOR 3 -#define TOML11_VERSION_MINOR 5 +#define TOML11_VERSION_MINOR 6 #define TOML11_VERSION_PATCH 0 #include "toml/parser.hpp"