asio version 1.4.0 released

This commit is contained in:
chris_kohlhoff 2009-02-01 11:25:19 +00:00
parent 4e7efa0a29
commit f390f8143e
5 changed files with 18 additions and 9 deletions

View File

@ -1,4 +1,4 @@
asio version 1.3.1
Released Tuesday, 14 October 2008.
asio version 1.4.0
Released Sunday, 01 February 2009.
See doc/index.html for API documentation and a tutorial.

View File

@ -2688,6 +2688,7 @@
/src/examples/chat/chat_client.cpp
/src/examples/chat/chat_message.hpp
/src/examples/chat/chat_server.cpp
/src/examples/chat/posix_chat_client.cpp
/src/examples/echo/
/src/examples/echo/async_tcp_echo_server.cpp
/src/examples/echo/async_udp_echo_server.cpp

View File

@ -222,6 +222,7 @@
/doc/html/boost_asio/example/chat/chat_client.cpp
/doc/html/boost_asio/example/chat/chat_message.hpp
/doc/html/boost_asio/example/chat/chat_server.cpp
/doc/html/boost_asio/example/chat/posix_chat_client.cpp
/doc/html/boost_asio/example/echo/
/doc/html/boost_asio/example/echo/async_tcp_echo_server.cpp
/doc/html/boost_asio/example/echo/async_udp_echo_server.cpp
@ -2758,6 +2759,7 @@
/doc/html/boost_asio/using.html
/libs/
/libs/asio/
/libs/asio/CMakeLists.txt
/libs/asio/doc/
/libs/asio/doc/asio.qbk
/libs/asio/doc/doxy2qbk.pl
@ -2865,6 +2867,7 @@
/libs/asio/example/chat/chat_server.cpp
/libs/asio/example/chat/Jamfile
/libs/asio/example/chat/Jamfile.v2
/libs/asio/example/chat/posix_chat_client.cpp
/libs/asio/example/echo/
/libs/asio/example/echo/async_tcp_echo_server.cpp
/libs/asio/example/echo/async_udp_echo_server.cpp
@ -3054,6 +3057,7 @@
/libs/asio/example/windows/Jamfile.v2
/libs/asio/example/windows/transmit_file.cpp
/libs/asio/index.html
/libs/asio/module.cmake
/libs/asio/test/
/libs/asio/test/basic_datagram_socket.cpp
/libs/asio/test/basic_deadline_timer.cpp
@ -3065,6 +3069,7 @@
/libs/asio/test/buffered_stream.cpp
/libs/asio/test/buffered_write_stream.cpp
/libs/asio/test/buffers_iterator.cpp
/libs/asio/test/CMakeLists.txt
/libs/asio/test/completion_condition.cpp
/libs/asio/test/datagram_socket_service.cpp
/libs/asio/test/deadline_timer.cpp
@ -3141,11 +3146,14 @@
/libs/system/build/
/libs/system/build/Jamfile
/libs/system/build/Jamfile.v2
/libs/system/CMakeLists.txt
/libs/system/doc/
/libs/system/doc/index.html
/libs/system/doc/reference.html
/libs/system/index.html
/libs/system/module.cmake
/libs/system/src/
/libs/system/src/CMakeLists.txt
/libs/system/src/error_code.cpp
/libs/system/test/
/libs/system/test/error_code_test.cpp
@ -3153,10 +3161,10 @@
/libs/system/test/header_only_test.cpp
/libs/system/test/initialization_test.cpp
/libs/system/test/Jamfile.v2
/libs/system/test/msvc_system/
/libs/system/test/msvc_system/common.vsprops
/libs/system/test/msvc_system/error_code_test/
/libs/system/test/msvc_system/error_code_test/error_code_test.vcproj
/libs/system/test/msvc_system/msvc_system.sln
/libs/system/test/system_error_test.cpp
/libs/system/test/system_msvc/
/libs/system/test/system_msvc/common.vsprops
/libs/system/test/system_msvc/error_code_test/
/libs/system/test/system_msvc/error_code_test/error_code_test.vcproj
/libs/system/test/system_msvc/system_msvc.sln
/README.txt

View File

@ -1,4 +1,4 @@
AC_INIT(asio, [1.3.1])
AC_INIT(asio, [1.4.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 100301 // 1.3.1
#define ASIO_VERSION 100400 // 1.4.0
#endif // ASIO_VERSION_HPP