Skip to content

Commit 5ba12c0

Browse files
committed
Documentation and version update to 0.11.1
1 parent 4303c44 commit 5ba12c0

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

boost/network/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define BOOST_NETLIB_VERSION_MAJOR 0
1313
#define BOOST_NETLIB_VERSION_MINOR 11
14-
#define BOOST_NETLIB_VERSION_INCREMENT 0
14+
#define BOOST_NETLIB_VERSION_INCREMENT 1
1515

1616
#ifndef BOOST_NETLIB_VERSION
1717
# define BOOST_NETLIB_VERSION \

libs/network/doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
# General information about the project.
4747
project = u'cpp-netlib'
48-
copyright = u'2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc.'
48+
copyright = u'2008-2014, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc.'
4949

5050
# The version info for the project you're documenting, acts as replacement for
5151
# |version| and |release|, also used in various other places throughout the
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version = '0.11'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.11.0'
57+
release = '0.11.1'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.
@@ -99,7 +99,7 @@
9999

100100
# The name for this set of Sphinx documents. If None, it defaults to
101101
# "<project> v<release> documentation".
102-
html_title = 'cpp-netlib v0.11.0'
102+
html_title = 'cpp-netlib v0.11.1'
103103

104104
# A shorter title for the navigation bar. Default is the same as html_title.
105105
# html_short_title = 'cpp-netlib'

libs/network/doc/reference/http_client.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@ initialization.
212212
| | | client-side SSL session |
213213
| | | establishment. |
214214
+--------------------------+----------------------------+--------------------------+
215+
| timeout | ``int`` | Number of seconds to |
216+
| | | wait for client requests |
217+
| | | before considering a |
218+
| | | timeout has occurred. |
219+
+--------------------------+----------------------------+--------------------------+
215220

216221

217222
To use the above supported named parameters, you'll have code that looks like
@@ -225,7 +230,8 @@ the following:
225230
.cache_resolved(true)
226231
.io_service(boost::make_shared<boost::asio::io_service>())
227232
.openssl_certificate("/tmp/my-cert")
228-
.openssl_verify_path("/tmp/ca-certs");
233+
.openssl_verify_path("/tmp/ca-certs")
234+
.timeout(10);
229235
client client_(options);
230236
// use client_ as normal from here on out.
231237

libs/network/doc/whats_new.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77
:mod:`cpp-netlib` 0.11
88
----------------------
99

10+
v0.11.1
11+
~~~~~~~
12+
* Add support for request timeouts.
13+
* Build configuration fixes.
14+
* Support for Travis CI in-project config.
15+
* Make the response parser more flexible to support older/ad-hoc servers that don't have standard format responses.
16+
* Fix some instability in the client destructor.
17+
* MSVC 2010 specific fixes.
18+
1019
v0.11.0
1120
~~~~~~~
1221
* Fix thread leak in DNS resolution failure (`#245`_)

0 commit comments

Comments
 (0)