diff --git a/CHANGELOG b/CHANGELOG index a52e88c..21574be 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,5 @@ 2020-02-24 - - 2.11.0 + - 2.11.1 - [FEATURE] QUIC and HTTP/3 Internet Draft 27 support. - [FEATURE] Add experimental delayed ACKs extension. - Drop support for Internet Draft 24. diff --git a/docs/conf.py b/docs/conf.py index 595af2f..030f4cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = u'LiteSpeed Technologies' # The short X.Y version version = u'2.11' # The full version, including alpha/beta/rc tags -release = u'2.11.0' +release = u'2.11.1' # -- General configuration --------------------------------------------------- diff --git a/include/lsquic.h b/include/lsquic.h index c5103b8..a873b41 100644 --- a/include/lsquic.h +++ b/include/lsquic.h @@ -25,7 +25,7 @@ extern "C" { #define LSQUIC_MAJOR_VERSION 2 #define LSQUIC_MINOR_VERSION 11 -#define LSQUIC_PATCH_VERSION 0 +#define LSQUIC_PATCH_VERSION 1 /** * Engine flags: diff --git a/src/liblsquic/lsquic_trans_params.c b/src/liblsquic/lsquic_trans_params.c index 9876b06..ae5b428 100644 --- a/src/liblsquic/lsquic_trans_params.c +++ b/src/liblsquic/lsquic_trans_params.c @@ -202,7 +202,11 @@ lsquic_tp_encode (const struct transport_params *params, int is_server, = vint_val2bits(enum_2_tpi_val[TPI_ORIGINAL_CONNECTION_ID]); #if __GNUC__ #pragma GCC diagnostic ignored "-Wunknown-pragmas" +#if __clang__ +#pragma GCC diagnostic ignored "-Wtautological-constant-out-of-range-compare" +#else #pragma GCC diagnostic ignored "-Wtype-limits" +#endif #endif bits[TPI_ORIGINAL_CONNECTION_ID][1] = vint_val2bits(params->tp_original_cid.len);