aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zverovich <victor.zverovich@gmail.com>2019-12-04 10:22:07 -0800
committerVictor Zverovich <victor.zverovich@gmail.com>2019-12-04 10:22:07 -0800
commit02af5beb8a025cbac94e93da060789556c785316 (patch)
tree810e73d2c9f022c6c93eea636d88f5c6907ee37f
parent123e7f7fc33381a07a9d4d28ea2006f5132c503d (diff)
downloadfmtlib-02af5beb8a025cbac94e93da060789556c785316.tar.gz
Bump version and update changelog
-rw-r--r--ChangeLog.rst9
-rw-r--r--include/fmt/core.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index cdec766f..aa811439 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,3 +1,12 @@
+6.1.1 - TBD
+-----------
+
+* Fixed shared library build on Windows.
+
+* Added a missing decimal point in exponent notation with trailing zeros.
+
+* Removed deprecated ``format_arg_store::TYPES``.
+
6.1.0 - 2019-12-01
------------------
diff --git a/include/fmt/core.h b/include/fmt/core.h
index e766b3a9..13d74ba8 100644
--- a/include/fmt/core.h
+++ b/include/fmt/core.h
@@ -15,7 +15,7 @@
#include <type_traits>
// The fmt library version in the form major * 10000 + minor * 100 + patch.
-#define FMT_VERSION 60100
+#define FMT_VERSION 60101
#ifdef __has_feature
# define FMT_HAS_FEATURE(x) __has_feature(x)