Bump version and update changelog

This commit is contained in:
Victor Zverovich 2019-12-04 10:22:07 -08:00
parent 123e7f7fc3
commit 02af5beb8a
2 changed files with 10 additions and 1 deletions

View File

@ -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
------------------

View File

@ -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)