mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-28 18:32:46 +00:00
Merge branch 'release' of github.com:fmtlib/fmt
This commit is contained in:
commit
3f4839ce3d
@ -1,3 +1,19 @@
|
|||||||
|
7.1.3 - 2020-11-24
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Fixed handling of buffer boundaries in ``format_to_n``
|
||||||
|
(`#1996 <https://github.com/fmtlib/fmt/issues/1996>`_,
|
||||||
|
`#2029 <https://github.com/fmtlib/fmt/issues/2029>`_).
|
||||||
|
|
||||||
|
* Fixed linkage errors when linking with a shared library
|
||||||
|
(`#2011 <https://github.com/fmtlib/fmt/issues/2011>`_).
|
||||||
|
|
||||||
|
* Reintroduced ostream support to range formatters
|
||||||
|
(`#2014 <https://github.com/fmtlib/fmt/issues/2014>`_).
|
||||||
|
|
||||||
|
* Worked around an issue with mixing std versions in gcc
|
||||||
|
(`#2017 <https://github.com/fmtlib/fmt/issues/2017>`_).
|
||||||
|
|
||||||
7.1.2 - 2020-11-04
|
7.1.2 - 2020-11-04
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
import errno, os, re, sys
|
import errno, os, re, sys
|
||||||
from subprocess import check_call, CalledProcessError, Popen, PIPE, STDOUT
|
from subprocess import check_call, CalledProcessError, Popen, PIPE, STDOUT
|
||||||
|
|
||||||
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', '7.1.0', '7.1.1', '7.1.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', '7.1.0', '7.1.1', '7.1.2', '7.1.3']
|
||||||
|
|
||||||
class Pip:
|
class Pip:
|
||||||
def __init__(self, venv_dir):
|
def __init__(self, venv_dir):
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
// 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 70102
|
#define FMT_VERSION 70103
|
||||||
|
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user