Update version to 2.16.0

This commit is contained in:
Dmitri Tikhonov 2020-06-03 08:27:38 -04:00
parent f50b91483b
commit 6bca16f0d2
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,15 @@
2020-06-03
- 2.16.0
- [API] Use lsxpack_header v206.
- [FEATURE] Windows supported.
- [BUGFIX] Fix uninitialized variable use in client (regression in
2.15.0).
- Use ls-hpack 2.2.0.
- Use ls-qpack 2.2.0.
- Sample programs: fix the way maximum number of packets is
calculated.
- Remove some dead code.
2020-05-27 2020-05-27
- 2.15.0 - 2.15.0
- [FEATURE] QUIC and HTTP/3 Internet Draft 28 support. - [FEATURE] QUIC and HTTP/3 Internet Draft 28 support.

View file

@ -24,9 +24,9 @@ copyright = u'2020, LiteSpeed Technologies'
author = u'LiteSpeed Technologies' author = u'LiteSpeed Technologies'
# The short X.Y version # The short X.Y version
version = u'2.15' version = u'2.16'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = u'2.15.0' release = u'2.16.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View file

@ -24,7 +24,7 @@ extern "C" {
#endif #endif
#define LSQUIC_MAJOR_VERSION 2 #define LSQUIC_MAJOR_VERSION 2
#define LSQUIC_MINOR_VERSION 15 #define LSQUIC_MINOR_VERSION 16
#define LSQUIC_PATCH_VERSION 0 #define LSQUIC_PATCH_VERSION 0
/** /**