Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Nov 2, 2024
1 parent 3017dea commit a847160
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v7.5.0](#v750)
- [v7.4.0](#v740)
- [v7.3.0](#v730)
- [v7.2.2](#v722)
Expand Down Expand Up @@ -79,13 +80,14 @@
- [v1.1.0](#v110)
- [v1.0.0](#v100)

## TBD
## v7.5.0

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

- The `LOG_LEVEL_LIMIT` time-based rate-limiting macros now log the count of how many times a message would be logged
when throttled. For example, a log message may appear as `A log message with number 123 (21x)` to indicate that the
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 = "7.4.0",
version = "7.5.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 = 'v7.4.0'
release = 'v7.5.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 @@ -23,7 +23,7 @@ QUILL_BEGIN_NAMESPACE

/** Version Info - When updating VersionMajor please also update the namespace in Attributes.h **/
constexpr uint32_t VersionMajor{7};
constexpr uint32_t VersionMinor{4};
constexpr uint32_t VersionMinor{5};
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 : '7.4.0', default_options : ['warning_level=3', 'cpp_std=c++17'])
project('quill', 'cpp', version : '7.5.0', default_options : ['warning_level=3', 'cpp_std=c++17'])

inc_dirs = include_directories('include')

Expand Down

0 comments on commit a847160

Please sign in to comment.