Skip to content

Commit a847160

Browse files
committed
bump version
1 parent 3017dea commit a847160

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [v7.5.0](#v750)
12
- [v7.4.0](#v740)
23
- [v7.3.0](#v730)
34
- [v7.2.2](#v722)
@@ -79,13 +80,14 @@
7980
- [v1.1.0](#v110)
8081
- [v1.0.0](#v100)
8182

82-
## TBD
83+
## v7.5.0
8384

8485
- In previous versions, logging on Windows automatically included `windows.h` in all components. The frontend will no
8586
longer include `windows.h`. By following the recommended usage example
8687
provided [here](https://github.com/odygrd/quill/blob/master/examples/recommended_usage/recommended_usage.cpp) as
87-
guidance, you can create a wrapper library around Quill for the backend, allowing you to log on Windows without
88-
including `windows.h` in the frontend or main program. ([#618](https://github.com/odygrd/quill/issues/618))
88+
guidance, you can create a wrapper library around Quill for the backend, allowing you to
89+
log on Windows without including `windows.h` in the frontend or main
90+
program. ([#618](https://github.com/odygrd/quill/issues/618))
8991

9092
- The `LOG_LEVEL_LIMIT` time-based rate-limiting macros now log the count of how many times a message would be logged
9193
when throttled. For example, a log message may appear as `A log message with number 123 (21x)` to indicate that the

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "quill",
3-
version = "7.4.0",
3+
version = "7.5.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 = 'v7.4.0'
38+
release = 'v7.5.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
@@ -23,7 +23,7 @@ QUILL_BEGIN_NAMESPACE
2323

2424
/** Version Info - When updating VersionMajor please also update the namespace in Attributes.h **/
2525
constexpr uint32_t VersionMajor{7};
26-
constexpr uint32_t VersionMinor{4};
26+
constexpr uint32_t VersionMinor{5};
2727
constexpr uint32_t VersionPatch{0};
2828
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};
2929

meson.build

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

33
inc_dirs = include_directories('include')
44

0 commit comments

Comments
 (0)