diff --git a/CHANGELOG.md b/CHANGELOG.md index e152e3eb..1b8ffc89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased +## v0.3.2 + +- Add support for stderr sinks + ([#63](https://github.com/guangie88/spdlog_setup/pull/63)) +- Add support for setting logging flush level + ([#62](https://github.com/guangie88/spdlog_setup/pull/62)) + ## v0.3.1 - Add option for CMake to target and link only `spdlog` headers diff --git a/appveyor.yml b/appveyor.yml index 39e56a2c..93f950d1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.3.2-pre.{build} +version: 0.3.2.{build} image: - Visual Studio 2015 diff --git a/include/spdlog_setup/conf.h b/include/spdlog_setup/conf.h index 9c74a831..d2785170 100644 --- a/include/spdlog_setup/conf.h +++ b/include/spdlog_setup/conf.h @@ -1,7 +1,7 @@ /** * Implementation of public facing functions in spdlog_setup. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/include/spdlog_setup/details/conf_impl.h b/include/spdlog_setup/details/conf_impl.h index 8a6a682f..a45dafc3 100644 --- a/include/spdlog_setup/details/conf_impl.h +++ b/include/spdlog_setup/details/conf_impl.h @@ -1,7 +1,7 @@ /** * Implementation of non-public facing functions in spdlog_setup. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/include/spdlog_setup/details/setup_error.h b/include/spdlog_setup/details/setup_error.h index 89d11abd..afd9b6d3 100644 --- a/include/spdlog_setup/details/setup_error.h +++ b/include/spdlog_setup/details/setup_error.h @@ -1,7 +1,7 @@ /** * Implementation of setup_error in spdlog_setup. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/include/spdlog_setup/details/template_impl.h b/include/spdlog_setup/details/template_impl.h index 063aded8..f3ec9422 100644 --- a/include/spdlog_setup/details/template_impl.h +++ b/include/spdlog_setup/details/template_impl.h @@ -1,7 +1,7 @@ /** * Implementation of the mini template engine in spdlog_setup. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/src/unit_test/conf.h b/src/unit_test/conf.h index b01c763a..faf00d76 100644 --- a/src/unit_test/conf.h +++ b/src/unit_test/conf.h @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/src/unit_test/examples.h b/src/unit_test/examples.h index d2f4bec0..ed1b164a 100644 --- a/src/unit_test/examples.h +++ b/src/unit_test/examples.h @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/src/unit_test/loggers.cpp b/src/unit_test/loggers.cpp index d0598a0a..2c7ad9f3 100644 --- a/src/unit_test/loggers.cpp +++ b/src/unit_test/loggers.cpp @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #include "catch.hpp" diff --git a/src/unit_test/loggers.h b/src/unit_test/loggers.h index 9ee6b994..37be2788 100644 --- a/src/unit_test/loggers.h +++ b/src/unit_test/loggers.h @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/src/unit_test/others.cpp b/src/unit_test/others.cpp index e757b06d..59e3938c 100644 --- a/src/unit_test/others.cpp +++ b/src/unit_test/others.cpp @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #define CATCH_CONFIG_MAIN diff --git a/src/unit_test/sinks.cpp b/src/unit_test/sinks.cpp index 35614abf..bee34342 100644 --- a/src/unit_test/sinks.cpp +++ b/src/unit_test/sinks.cpp @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #include "catch.hpp" diff --git a/src/unit_test/sinks.h b/src/unit_test/sinks.h index 13c2c2d9..e916aabc 100644 --- a/src/unit_test/sinks.h +++ b/src/unit_test/sinks.h @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once diff --git a/src/unit_test/thread_pool.cpp b/src/unit_test/thread_pool.cpp index c9235ae8..452f474e 100644 --- a/src/unit_test/thread_pool.cpp +++ b/src/unit_test/thread_pool.cpp @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #include "catch.hpp" diff --git a/src/unit_test/thread_pool.h b/src/unit_test/thread_pool.h index 233c50e0..c82841b2 100644 --- a/src/unit_test/thread_pool.h +++ b/src/unit_test/thread_pool.h @@ -1,7 +1,7 @@ /** * Unit tests implementation. * @author Chen Weiguang - * @version 0.3.2-pre + * @version 0.3.2 */ #pragma once