Skip to content

Commit e6f8c11

Browse files
committed
update version and changelog
1 parent 0b57a5f commit e6f8c11

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [v8.1.0](#v810)
12
- [v8.0.0](#v800)
23
- [v7.5.0](#v750)
34
- [v7.4.0](#v740)
@@ -81,6 +82,13 @@
8182
- [v1.1.0](#v110)
8283
- [v1.0.0](#v100)
8384

85+
## v8.1.0
86+
87+
- Updated bundled `libfmt` to `11.1.3`
88+
- Suppressed clang-19 warning when building the tests with C++17. ([#646](https://github.com/odygrd/quill/issues/646))
89+
- Fixed windows linkage error when shared library is used.
90+
- Fixed redefinition of `struct fmt_detail::time_zone` error ([#649](https://github.com/odygrd/quill/issues/649))
91+
8492
## v8.0.0
8593

8694
- Unified `JsonFileSink.h` and `JsonConsoleSink.h` into a single header, `JsonSink.h`, with both classes now sharing a

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "quill",
3-
version = "8.0.0",
3+
version = "8.1.0",
44
compatibility_level = 1,
55
)
66

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def configureDoxyfile(input_dir, output_dir):
3535
project = 'Quill'
3636
copyright = '2024, Odysseas Georgoudis'
3737
author = 'Odysseas Georgoudis'
38-
release = 'v8.0.0'
38+
release = 'v8.1.0'
3939

4040
# -- General configuration ---------------------------------------------------
4141
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

include/quill/Backend.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ QUILL_BEGIN_NAMESPACE
2222

2323
/** Version Info - When updating VersionMajor please also update the namespace in Attributes.h **/
2424
constexpr uint32_t VersionMajor{8};
25-
constexpr uint32_t VersionMinor{0};
25+
constexpr uint32_t VersionMinor{1};
2626
constexpr uint32_t VersionPatch{0};
2727
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};
2828

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('quill', 'cpp', version : '8.0.0', default_options : ['warning_level=3', 'cpp_std=c++17'])
1+
project('quill', 'cpp', version : '8.1.0', default_options : ['warning_level=3', 'cpp_std=c++17'])
22

33
inc_dirs = include_directories('include')
44

0 commit comments

Comments
 (0)