Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-01-18 13:13:07 +0300
committergabime <gmelman1@gmail.com>2019-01-18 13:13:07 +0300
commita7148b718ea2fabb8387cb90aee9bf448da63e65 (patch)
tree56f9e40b785666c67279899b7247775e21d8204a
parent23fdc0eae426ac2efadf9f4bb1f43caae1667bc7 (diff)
Version 1.3.1v1.3.1
-rw-r--r--CMakeLists.txt2
-rw-r--r--include/spdlog/version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e1d96563..cf2d04f5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@
#
cmake_minimum_required(VERSION 3.1)
-project(spdlog VERSION 1.3.0 LANGUAGES CXX)
+project(spdlog VERSION 1.3.1 LANGUAGES CXX)
include(CMakeDependentOption)
include(GNUInstallDirs)
diff --git a/include/spdlog/version.h b/include/spdlog/version.h
index 16b9194b..87a68bd1 100644
--- a/include/spdlog/version.h
+++ b/include/spdlog/version.h
@@ -7,6 +7,6 @@
#define SPDLOG_VER_MAJOR 1
#define SPDLOG_VER_MINOR 3
-#define SPDLOG_VER_PATCH 0
+#define SPDLOG_VER_PATCH 1
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)