From 8ed1a1d7e44fc5f47009a2a9eb4fcc796aa2adbd Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sat, 6 Jan 2024 02:20:21 +0900 Subject: [PATCH] feat: update version --- CMakeLists.txt | 2 +- toml.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af19044f..cc183f65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5) enable_testing() -project(toml11 VERSION 3.7.1) +project(toml11 VERSION 3.8.0) option(toml11_BUILD_TEST "Build toml tests" OFF) option(toml11_INSTALL "Install CMake targets during install step." ON) diff --git a/toml.hpp b/toml.hpp index 6b0ca1ed..593d1224 100644 --- a/toml.hpp +++ b/toml.hpp @@ -26,8 +26,8 @@ #define TOML_FOR_MODERN_CPP #define TOML11_VERSION_MAJOR 3 -#define TOML11_VERSION_MINOR 7 -#define TOML11_VERSION_PATCH 1 +#define TOML11_VERSION_MINOR 8 +#define TOML11_VERSION_PATCH 0 #include "toml/parser.hpp" #include "toml/literal.hpp"