From 647381020ef04b5d41d540ec489eba45e82d90a7 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Thu, 27 May 2021 10:14:29 +0900 Subject: [PATCH] chore: update version number --- CMakeLists.txt | 2 +- toml.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fc5439..49b665d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) enable_testing() -project(toml11 VERSION 3.6.1) +project(toml11 VERSION 3.7.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 9ed1216..f34cfcc 100644 --- a/toml.hpp +++ b/toml.hpp @@ -34,8 +34,8 @@ #endif #define TOML11_VERSION_MAJOR 3 -#define TOML11_VERSION_MINOR 6 -#define TOML11_VERSION_PATCH 1 +#define TOML11_VERSION_MINOR 7 +#define TOML11_VERSION_PATCH 0 #include "toml/parser.hpp" #include "toml/literal.hpp"