mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Merge release branch
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
7.0.3 - TBD
|
7.0.3 - 2020-08-06
|
||||||
-----------
|
------------------
|
||||||
|
|
||||||
* Worked around broken ``numeric_limits`` for 128-bit integers
|
* Worked around broken ``numeric_limits`` for 128-bit integers
|
||||||
(`#1787 <https://github.com/fmtlib/fmt/issues/1787>`_).
|
(`#1787 <https://github.com/fmtlib/fmt/issues/1787>`_).
|
||||||
@ -11,9 +11,9 @@
|
|||||||
(`#1800 <https://github.com/fmtlib/fmt/pull/1800>`_).
|
(`#1800 <https://github.com/fmtlib/fmt/pull/1800>`_).
|
||||||
Thanks `@Kingcom <https://github.com/Kingcom>`_.
|
Thanks `@Kingcom <https://github.com/Kingcom>`_.
|
||||||
|
|
||||||
* Fixed issues in locale-specific integer formatting (#)
|
* Fixed issues in locale-specific integer formatting
|
||||||
(`#1782 <https://github.com/fmtlib/fmt/issues/1782>`_,
|
(`#1782 <https://github.com/fmtlib/fmt/issues/1782>`_,
|
||||||
`#1801 <https://github.com/fmtlib/fmt/issues/1801>`_)
|
`#1801 <https://github.com/fmtlib/fmt/issues/1801>`_).
|
||||||
|
|
||||||
7.0.2 - 2020-07-29
|
7.0.2 - 2020-07-29
|
||||||
------------------
|
------------------
|
||||||
|
@ -6,7 +6,7 @@ import errno, os, shutil, sys, tempfile
|
|||||||
from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
|
from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
|
||||||
from distutils.version import LooseVersion
|
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):
|
def pip_install(package, commit=None, **kwargs):
|
||||||
"Install package using pip."
|
"Install package using pip."
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
// The fmt library version in the form major * 10000 + minor * 100 + patch.
|
// The fmt library version in the form major * 10000 + minor * 100 + patch.
|
||||||
#define FMT_VERSION 70002
|
#define FMT_VERSION 70003
|
||||||
|
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
||||||
|
Reference in New Issue
Block a user