diff --git a/ChangeLog.rst b/ChangeLog.rst index 4bae496e..97a0a7da 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,5 +1,5 @@ -7.0.3 - TBD ------------ +7.0.3 - 2020-08-06 +------------------ * Worked around broken ``numeric_limits`` for 128-bit integers (`#1787 `_). @@ -11,9 +11,9 @@ (`#1800 `_). Thanks `@Kingcom `_. -* Fixed issues in locale-specific integer formatting (#) +* Fixed issues in locale-specific integer formatting (`#1782 `_, - `#1801 `_) + `#1801 `_). 7.0.2 - 2020-07-29 ------------------ diff --git a/doc/build.py b/doc/build.py index 863e2cec..b84b1c06 100755 --- a/doc/build.py +++ b/doc/build.py @@ -6,7 +6,7 @@ import errno, os, shutil, sys, tempfile from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE from distutils.version import LooseVersion -versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0', '5.0.0', '5.1.0', '5.2.0', '5.2.1', '5.3.0', '6.0.0', '6.1.0', '6.1.1', '6.1.2', '6.2.0', '6.2.1', '7.0.0', '7.0.1', '7.0.2'] +versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0', '5.0.0', '5.1.0', '5.2.0', '5.2.1', '5.3.0', '6.0.0', '6.1.0', '6.1.1', '6.1.2', '6.2.0', '6.2.1', '7.0.0', '7.0.1', '7.0.2', '7.0.3'] def pip_install(package, commit=None, **kwargs): "Install package using pip." diff --git a/include/fmt/core.h b/include/fmt/core.h index 76569a2d..359deb25 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -18,7 +18,7 @@ #include // The fmt library version in the form major * 10000 + minor * 100 + patch. -#define FMT_VERSION 70002 +#define FMT_VERSION 70003 #ifdef __clang__ # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)