asio version 1.17.0 released

This commit is contained in:
Christopher Kohlhoff 2020-07-10 15:30:58 +10:00
parent a52696f75f
commit efff0de899
5 changed files with 1832 additions and 79 deletions

View File

@ -1,4 +1,4 @@
asio version 1.16.1
Released Wednesday, 29 April 2020.
asio version 1.17.0
Released Friday, 10 July 2020.
See doc/index.html for API documentation and a tutorial.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
AC_INIT(asio, [1.16.1])
AC_INIT(asio, [1.17.0])
AC_CONFIG_SRCDIR(include/asio.hpp)
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([tar-ustar])

View File

@ -18,6 +18,6 @@
// ASIO_VERSION % 100 is the sub-minor version
// ASIO_VERSION / 100 % 1000 is the minor version
// ASIO_VERSION / 100000 is the major version
#define ASIO_VERSION 101601 // 1.16.1
#define ASIO_VERSION 101700 // 1.17.0
#endif // ASIO_VERSION_HPP