diff --git a/MODULE.bazel b/MODULE.bazel index f3abb9c3..7e281a35 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "quill", - version = "7.3.0", + version = "7.4.0", compatibility_level = 1, ) diff --git a/docs/conf.py b/docs/conf.py index af402ac6..eabf833e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,7 +35,7 @@ def configureDoxyfile(input_dir, output_dir): project = 'Quill' copyright = '2024, Odysseas Georgoudis' author = 'Odysseas Georgoudis' -release = 'v7.3.0' +release = 'v7.4.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/include/quill/Backend.h b/include/quill/Backend.h index 3a016003..3e44cc5f 100644 --- a/include/quill/Backend.h +++ b/include/quill/Backend.h @@ -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{3}; +constexpr uint32_t VersionMinor{4}; constexpr uint32_t VersionPatch{0}; constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch}; diff --git a/meson.build b/meson.build index adc1fbbc..e4f8a350 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('quill', 'cpp', version : '7.3.0', default_options : ['warning_level=3', 'cpp_std=c++17']) +project('quill', 'cpp', version : '7.4.0', default_options : ['warning_level=3', 'cpp_std=c++17']) inc_dirs = include_directories('include')