diff --git a/CHANGELOG.md b/CHANGELOG.md index e923f94e..ed1a71d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [v6.1.2](#v612) - [v6.1.1](#v611) - [v6.1.0](#v610) - [v6.0.0](#v600) @@ -71,6 +72,10 @@ - [v1.1.0](#v110) - [v1.0.0](#v100) +## v6.1.2 + +- Fix pkg-config file on windows + ## v6.1.1 - Fix pkg-config file diff --git a/MODULE.bazel b/MODULE.bazel index d8e78a39..bf7a5332 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "quill", - version = "6.1.1", + version = "6.1.2", compatibility_level = 1, ) diff --git a/docs/conf.py b/docs/conf.py index daf2d996..1465bc14 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 = 'v6.1.1' +release = 'v6.1.2' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/meson.build b/meson.build index 1625a5fe..cfbc4fdc 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('quill', 'cpp', version : '6.1.1', default_options : ['warning_level=3', 'cpp_std=c++17']) +project('quill', 'cpp', version : '6.1.2', default_options : ['warning_level=3', 'cpp_std=c++17']) inc_dirs = include_directories('quill/include') diff --git a/quill/include/quill/Backend.h b/quill/include/quill/Backend.h index ecc344e3..d8397b9b 100644 --- a/quill/include/quill/Backend.h +++ b/quill/include/quill/Backend.h @@ -23,7 +23,7 @@ QUILL_BEGIN_NAMESPACE /** Version Info **/ constexpr uint32_t VersionMajor{6}; constexpr uint32_t VersionMinor{1}; -constexpr uint32_t VersionPatch{1}; +constexpr uint32_t VersionPatch{2}; constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch}; class Backend