Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Sep 27, 2024
1 parent 0b6cadb commit 5b03aa5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@
application crashes. ([#590](https://github.com/odygrd/quill/issues/590))
- Prevented error logs from the `SignalHandler` from being output to CSV files when a `CsvWriter` is in
use. ([#588](https://github.com/odygrd/quill/issues/588))
- Implemented a workaround to resolve false positive warnings from `clang-tidy` on Windows.
- Introduced `SignalHandlerOptions` to simplify and unify the API. `Backend::start_with_signal_handler` is now
deprecated, replaced by a new `Backend::start` overload that accepts `SignalHandlerOptions` for enabling signal
handling.
- Added a new `create_or_get_logger` overload that accepts a `std::vector<std::shared_ptr<Sink>>`, improving flexibility
by allowing a variable number of sinks to be passed at runtime when creating a logger.
- Introduced `SignalHandlerOptions` to simplify and unify the API. `Backend::start_with_signal_handler` is now
deprecated,
replaced by a new `Backend::start` overload that accepts `SignalHandlerOptions` for enabling signal handling.
- Added a new overload to `create_or_get_logger` to create a logger that inherits configuration options from a specified
logger. ([#596](https://github.com/odygrd/quill/issues/596))
- Implemented a workaround to resolve false positive warnings from `clang-tidy` on Windows.

## v7.2.2

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.2.2",
version = "7.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 = 'v7.2.2'
release = 'v7.3.0'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions include/quill/Backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ 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{2};
constexpr uint32_t VersionPatch{2};
constexpr uint32_t VersionMinor{3};
constexpr uint32_t VersionPatch{0};
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};

class Backend
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.2.2', default_options : ['warning_level=3', 'cpp_std=c++17'])
project('quill', 'cpp', version : '7.3.0', default_options : ['warning_level=3', 'cpp_std=c++17'])

inc_dirs = include_directories('include')

Expand Down

0 comments on commit 5b03aa5

Please sign in to comment.