From 95f580462f8bc0cff4669bb732e2f0bbece44c75 Mon Sep 17 00:00:00 2001 From: Odysseas Georgoudis Date: Fri, 1 Dec 2023 00:48:58 +0000 Subject: [PATCH] update CHANGELOG.md and version --- CHANGELOG.md | 5 +++++ quill/include/quill/Quill.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd625a9c..f01aaa4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [v3.5.1](#v351) - [v3.5.0](#v350) - [v3.4.1](#v341) - [v3.4.0](#v340) @@ -53,6 +54,10 @@ - [v1.1.0](#v110) - [v1.0.0](#v100) +## v3.5.1 + +- Fix for accessing `name()` method of the `Logger` class. ([#378](https://github.com/odygrd/quill/pull/378)) + ## v3.5.0 - Fixed `LOG_TRACE_CFORMAT` macros. diff --git a/quill/include/quill/Quill.h b/quill/include/quill/Quill.h index 4ccb2d19..09d6288b 100644 --- a/quill/include/quill/Quill.h +++ b/quill/include/quill/Quill.h @@ -34,7 +34,7 @@ namespace quill /** Version Info **/ constexpr uint32_t VersionMajor{3}; constexpr uint32_t VersionMinor{5}; -constexpr uint32_t VersionPatch{0}; +constexpr uint32_t VersionPatch{1}; constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch}; /** forward declarations **/