From 57da0e8f894789ec193eeab85986797e5e063f4f Mon Sep 17 00:00:00 2001 From: Weiguang Date: Sat, 2 Nov 2019 13:35:31 +0800 Subject: [PATCH] Prep to release 0.3.0 (#48) --- CHANGELOG.md | 4 +++- appveyor.yml | 2 +- include/spdlog_setup/conf.h | 2 +- include/spdlog_setup/details/conf_impl.h | 2 +- include/spdlog_setup/details/setup_error.h | 2 +- include/spdlog_setup/details/template_impl.h | 2 +- src/unit_test/conf.h | 2 +- src/unit_test/examples.h | 2 +- src/unit_test/loggers.cpp | 2 +- src/unit_test/loggers.h | 2 +- src/unit_test/others.cpp | 2 +- src/unit_test/sinks.cpp | 2 +- src/unit_test/sinks.h | 2 +- src/unit_test/thread_pool.cpp | 2 +- src/unit_test/thread_pool.h | 2 +- 15 files changed, 17 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec0fa1df..d66c3c7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,12 @@ ## Unreleased +## v0.3 + - Add support for async logger. This fixes ([#44](https://github.com/guangie88/spdlog_setup/issues/44)) - This makes logger accepts `type`, which takes in `sync` or `async`. - `sync` is default. Refer to the README for more details. + `sync` is default. Refer to example in [README](README.md) for more details. - Change support to `spdlog` `v1.y.z` tag release, currently tested all `v1.0.0` to `v1.3.1` to be working. This fixes ([#26](https://github.com/guangie88/spdlog_setup/issues/26)). diff --git a/appveyor.yml b/appveyor.yml index 678bfedf..4f9b2991 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.3.0-pre.{build} +version: 0.3.0.{build} image: - Visual Studio 2015 diff --git a/include/spdlog_setup/conf.h b/include/spdlog_setup/conf.h index 3152742c..3e39e712 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/include/spdlog_setup/details/conf_impl.h b/include/spdlog_setup/details/conf_impl.h index 4491bc85..537f8f2c 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/include/spdlog_setup/details/setup_error.h b/include/spdlog_setup/details/setup_error.h index 851d5c5e..c45fd01e 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/include/spdlog_setup/details/template_impl.h b/include/spdlog_setup/details/template_impl.h index 904038fe..3e37f9c5 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/src/unit_test/conf.h b/src/unit_test/conf.h index 9405ee58..da866e62 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/src/unit_test/examples.h b/src/unit_test/examples.h index 292e14c9..a77c3c0e 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/src/unit_test/loggers.cpp b/src/unit_test/loggers.cpp index 96d28a08..1f626b46 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.0-pre + * @version 0.3.0 */ #include "catch.hpp" diff --git a/src/unit_test/loggers.h b/src/unit_test/loggers.h index 630a75aa..f520cd57 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/src/unit_test/others.cpp b/src/unit_test/others.cpp index a9c53984..f9dbcdb5 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.0-pre + * @version 0.3.0 */ #define CATCH_CONFIG_MAIN diff --git a/src/unit_test/sinks.cpp b/src/unit_test/sinks.cpp index eb032a9c..35ea55fc 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.0-pre + * @version 0.3.0 */ #include "catch.hpp" diff --git a/src/unit_test/sinks.h b/src/unit_test/sinks.h index 3f2af162..39132d2d 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.0-pre + * @version 0.3.0 */ #pragma once diff --git a/src/unit_test/thread_pool.cpp b/src/unit_test/thread_pool.cpp index 23126fb3..55e89ad2 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.0-pre + * @version 0.3.0 */ #include "catch.hpp" diff --git a/src/unit_test/thread_pool.h b/src/unit_test/thread_pool.h index e9e8a047..33791c0a 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.0-pre + * @version 0.3.0 */ #pragma once