diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7febb4..074a669b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [v8.3.0](#v830) - [v8.2.0](#v820) - [v8.1.1](#v811) - [v8.1.0](#v810) @@ -84,6 +85,13 @@ - [v1.1.0](#v110) - [v1.0.0](#v100) +## v8.3.0 + +- Updated bundled `libfmt` to `11.1.4`. +- Fixed BSD builds. ([#688](https://github.com/odygrd/quill/issues/688)) +- On Linux, setting a long backend thread name now truncates it instead of failing. ([#691](https://github.com/odygrd/quill/issues/691)) +- CMake improvements: switched to range syntax for minimum required version and bumped minimum required CMake version to `3.12`. ([#686](https://github.com/odygrd/quill/issues/686)) + ## v8.2.0 - Added `DeferredFormatCodec` and `DirectFormatCodec` for easier logging of user-defined types and smoother migration diff --git a/MODULE.bazel b/MODULE.bazel index f7fff7db..d62e418b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "quill", - version = "8.2.0", + version = "8.3.0", compatibility_level = 1, ) diff --git a/docs/conf.py b/docs/conf.py index ea79800a..390a818f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,7 +35,7 @@ def configureDoxyfile(input_dir, output_dir): project = 'Quill' copyright = '2024, Odysseas Georgoudis' author = 'Odysseas Georgoudis' -release = 'v8.2.0' +release = 'v8.3.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/include/quill/Backend.h b/include/quill/Backend.h index 7d0f392d..68e21710 100644 --- a/include/quill/Backend.h +++ b/include/quill/Backend.h @@ -22,7 +22,7 @@ QUILL_BEGIN_NAMESPACE /** Version Info - When updating VersionMajor please also update the namespace in Attributes.h **/ constexpr uint32_t VersionMajor{8}; -constexpr uint32_t VersionMinor{2}; +constexpr uint32_t VersionMinor{3}; constexpr uint32_t VersionPatch{0}; constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch}; diff --git a/meson.build b/meson.build index b999b9a2..4de0849c 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('quill', 'cpp', version : '8.2.0', default_options : ['warning_level=3', 'cpp_std=c++17']) +project('quill', 'cpp', version : '8.3.0', default_options : ['warning_level=3', 'cpp_std=c++17']) inc_dirs = include_directories('include')