Skip to content

Commit 20f809d

Browse files
committed
Updated version numbers in documentation.
1 parent 9a05772 commit 20f809d

File tree

8 files changed

+20
-133
lines changed

8 files changed

+20
-133
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Running Tests
9090
If you want to run the tests that come with cpp-netlib, there are a few things
9191
you will need. These are:
9292

93-
* A compiler (GCC 4.x, Clang 3.6, MSVC 2008)
93+
* A compiler (GCC 5.x, Clang 3.7, MSVC 2015)
9494
* A build tool (CMake_ is required)
9595
* OpenSSL headers (optional)
9696

@@ -101,13 +101,13 @@ you will need. These are:
101101
Hacking on cpp-netlib
102102
---------------------
103103

104-
cpp-netlib uses git_ for tracking work, and is hosted on GitHub_.
104+
cpp-netlib uses git_ for tracking work, and is hosted on GitHub_.
105105
cpp-netlib is hosted on GitHub_ following the GitHub recommended practice of
106106
forking the repository and submitting pull requests to the source repository.
107107
You can read more about the forking_ process and submitting `pull requests`_ if
108108
you're not familiar with either process yet. cpp-netib follows the GitHub pull
109109
request model for accepting patches. You can read more about the process at
110-
http://cpp-netlib.org/process.html#pull-requests.
110+
http://cpp-netlib.org/process.html#pull-requests.
111111

112112
.. _git: http://git-scm.com/
113113
.. _GitHub: http://github.com/

boost/network/version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <boost/network/version.hpp>
1111

1212
#define BOOST_NETLIB_VERSION_MAJOR 0
13-
#define BOOST_NETLIB_VERSION_MINOR 12
13+
#define BOOST_NETLIB_VERSION_MINOR 13
1414
#define BOOST_NETLIB_VERSION_INCREMENT 0
1515

1616
#ifndef BOOST_NETLIB_VERSION

libs/network/doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = '0.12'
65+
version = '0.13'
6666
# The full version, including alpha/beta/rc tags.
67-
release = '0.12.0'
67+
release = '0.13.0'
6868

6969
# The language for content autogenerated by Sphinx. Refer to documentation
7070
# for a list of supported languages.
@@ -111,7 +111,7 @@
111111

112112
# The name for this set of Sphinx documents. If None, it defaults to
113113
# "<project> v<release> documentation".
114-
html_title = 'cpp-netlib v0.12.0'
114+
html_title = 'cpp-netlib v0.13.0'
115115

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

libs/network/doc/examples.rst

-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ embedded into larger applications.
2424
examples/http/hello_world_server
2525
examples/http/hello_world_client
2626
examples/http/atom_reader
27-
examples/http/twitter_search

libs/network/doc/examples/http/twitter_search.rst

-117
This file was deleted.

libs/network/doc/getting_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Projects using CMake can add the following lines in their ``CMakeLists.txt`` to
234234
be able to use :mod:`cpp-netlib`::
235235

236236
set ( CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ~/cpp-netlib-build )
237-
find_package ( cppnetlib 0.11.0 REQUIRED )
237+
find_package ( cppnetlib 0.13.0 REQUIRED )
238238
include_directories ( ${CPPNETLIB_INCLUDE_DIRS} )
239239
target_link_libraries ( MyApplication ${CPPNETLIB_LIBRARIES} )
240240

libs/network/doc/index.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
.. :Authors: Glyn Matthews <[email protected]>
55
.. Dean Michael Berris <[email protected]>
6-
.. :Date: 2014-10-01
7-
.. :Version: 0.11.0
6+
.. :Date: 2016-10-05
7+
.. :Version: 0.13.0
88
.. :Description: Complete user documentation, with examples, for the :mod:`cpp-netlib`.
99
.. :Copyright: Copyright Glyn Matthews, Dean Michael Berris 2008-2013.
1010
.. Copyrigh 2013 Google, Inc.
@@ -25,7 +25,7 @@ project website at:
2525

2626
http://cpp-netlib.org/
2727

28-
This version of :mod:`cpp-netlib` is tagged as cpp-netlib-0.11.0 in the GitHub_
28+
This version of :mod:`cpp-netlib` is tagged as cpp-netlib-0.13.0 in the GitHub_
2929
repository. You can find more information about the progress of the development
3030
by checking our GitHub_ project page at:
3131

@@ -120,4 +120,3 @@ Want to learn more?
120120

121121
.. _Boost: http://www.boost.org/
122122
.. _GitHub: http://github.com/
123-

libs/network/doc/whats_new.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
What's New
55
************
66

7+
:mod:`cpp-netlib` 0.13
8+
----------------------
9+
10+
* Added Visual Studio 2015 support.
11+
* Update minimum Boost to 1.58. Always use shared libs from Boost.
12+
713
:mod:`cpp-netlib` 0.12
814
----------------------
915

@@ -71,15 +77,15 @@ v0.11.0
7177
* Support streaming body chunks for PUT/POST client requests (`#27`_)
7278
* Fix non-case-sensitive header parsing for some client tags (`#313`_)
7379
* Remove unsupported Jamfiles from the whole project (`#316`_)
74-
* Add ``make install`` for Linux and OS X (`#285`_)
80+
* Add ``make install`` for Linux and OS X (`#285`_)
7581
* Fix incorrect Body processing (`#69`_)
7682
* Support chunked transfer encoding from HTTP responses (`#86`_)
77-
* Make OS X Clang builds use C++11 and libc++.
83+
* Make OS X Clang builds use C++11 and libc++.
7884
* Update Boost requirement to 1.54.0.
7985
* Experimental Base64 encoding/decoding library (`#287`_)
8086
* *Known test failure:* OS X Xcode Clang 5.0 + Boost 1.54.0 + libc++ don't play
8187
well with Boost.Serialization issues, mitigate test breakage but
82-
``cpp-netlib-utils_base64_test`` still fails in this platform. (`#287`_)
88+
``cpp-netlib-utils_base64_test`` still fails in this platform. (`#287`_)
8389
* Provide a client option to always validate peers for HTTPS requests made by
8490
the client. (`#349`_)
8591
* Back-port fix for `#163`_ for improved URI parsing.

0 commit comments

Comments
 (0)