Skip to content

Commit

Permalink
Update version and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Feb 28, 2025
1 parent c78bd3a commit e8c4663
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v8.3.0](#v830)
- [v8.2.0](#v820)
- [v8.1.1](#v811)
- [v8.1.0](#v810)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "quill",
version = "8.2.0",
version = "8.3.0",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/quill/Backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -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};

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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')

Expand Down

0 comments on commit e8c4663

Please sign in to comment.