From 8e5613379f5140fefb0b60412fbf1f5406e7c7f8 Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 9 Nov 2024 17:01:30 +0200 Subject: [PATCH 1/2] Version 1.15.0 --- include/spdlog/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/version.h b/include/spdlog/version.h index 4fa94cb6..7c5e1295 100644 --- a/include/spdlog/version.h +++ b/include/spdlog/version.h @@ -4,8 +4,8 @@ #pragma once #define SPDLOG_VER_MAJOR 1 -#define SPDLOG_VER_MINOR 14 -#define SPDLOG_VER_PATCH 1 +#define SPDLOG_VER_MINOR 15 +#define SPDLOG_VER_PATCH 0 #define SPDLOG_TO_VERSION(major, minor, patch) (major * 10000 + minor * 100 + patch) #define SPDLOG_VERSION SPDLOG_TO_VERSION(SPDLOG_VER_MAJOR, SPDLOG_VER_MINOR, SPDLOG_VER_PATCH) From 51a0deca2c825f1d4461655a18bb37d6df76646d Mon Sep 17 00:00:00 2001 From: F1F88 <0xf1f88@gmail.com> Date: Sun, 10 Nov 2024 03:41:00 +0800 Subject: [PATCH 2/2] docs: Removed duplicate line in daily_file_sink comment (#3249) --- include/spdlog/sinks/daily_file_sink.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/spdlog/sinks/daily_file_sink.h b/include/spdlog/sinks/daily_file_sink.h index 884145fd..615c9f7b 100644 --- a/include/spdlog/sinks/daily_file_sink.h +++ b/include/spdlog/sinks/daily_file_sink.h @@ -62,7 +62,6 @@ struct daily_filename_format_calculator { * Rotating file sink based on date. * If truncate != false , the created file will be truncated. * If max_files > 0, retain only the last max_files and delete previous. - * If max_files > 0, retain only the last max_files and delete previous. * Note that old log files from previous executions will not be deleted by this class, * rotation and deletion is only applied while the program is running. */