Skip to content

Commit 0f6ed8a

Browse files
committed
Updated version and made minor doc fixes.
1 parent 96084b8 commit 0f6ed8a

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

boost/network/version.hpp

+12-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22
#define BOOST_NETWORK_VERSION_HPP_20091214
33

44
// Copyright Dean Michael Berris 2009.
5+
// Copyright Glyn Matthews 2010.
56
// Distributed under the Boost Software License, Version 1.0.
67
// (See accompanying file LICENSE_1_0.txt or copy at
78
// http://www.boost.org/LICENSE_1_0.txt)
89

10+
#include <boost/config.hpp>
11+
12+
#define BOOST_NETLIB_VERSION_MAJOR 0
13+
#define BOOST_NETLIB_VERSION_MINOR 7
14+
#define BOOST_NETLIB_VERSION_INCREMENT 1
15+
916
#ifndef BOOST_NETLIB_VERSION
10-
# define BOOST_NETLIB_VERSION "0.6"
11-
#endif
17+
# define BOOST_NETLIB_VERSION \
18+
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_MAJOR) "." \
19+
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_MINOR) "." \
20+
BOOST_STRINGIZE(BOOST_NETLIB_VERSION_INCREMENT)
21+
#endif // BOOST_NETLIB_VERSION
1222

1323
#endif // BOOST_NETWORK_VERSION_HPP_20091214
14-

libs/network/doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# The short X.Y version.
5757
version = '0.7'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '0.7'
59+
release = '0.7.1'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

libs/network/doc/getting_started.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ http://svn.github.com/mikhailberis/cpp-netlib.git.
5757
.. _msysGit: http://code.google.com/p/msysgit/downloads/list
5858
.. _Subversion: http://subversion.tigris.org/
5959

60-
.. note:: The :mod:`cpp-netlib` project is hosted on GitHub_ and follows the
60+
.. note:: The :mod:`cpp-netlib` project is hosted on GitHub_ and follows the
6161
prescribed development model for GitHub_ based projects. This means in case
6262
you want to submit patches, you will have to create a fork of the project
6363
(read up on forking_) and then submit a pull request (read up on submitting
@@ -70,7 +70,7 @@ Getting Boost
7070
=============
7171

7272
:mod:`cpp-netlib` depends on Boost_. It should work for any version
73-
of Boost above 1.41.0. If Boost is not installed on your system, the
73+
of Boost above 1.43.0. If Boost is not installed on your system, the
7474
latest package can be found on the `Boost web-site`_. The environment
7575
variable ``BOOST_ROOT`` must be defined, which must be the full path
7676
name of the top directory of the Boost distribution. Although Boost
@@ -164,7 +164,7 @@ join the discussion) you have a few options to choose from.
164164

165165
For reporting bugs, feature requests, and asking questions about the
166166
implementation and/or the documentation, you can go to the GitHub issues page
167-
for the project at http://github.com/mikhailberis/cpp-netlib/issues.
167+
for the project at http://github.com/cpp-netlib/cpp-netlib/issues.
168168

169169
You can also opt to join the developers mailing list for a more personal
170170
interaction with the developers of the project. You can join the mailing list
@@ -173,4 +173,4 @@ through https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel.
173173
You may also choose to get commercial support from:
174174

175175
Dean Michael Berris - <[email protected]>
176-
176+

libs/network/doc/index.rst

+6-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
.. :Authors: Glyn Matthews <[email protected]>
1414
.. Dean Michael Berris <[email protected]>
1515
.. :Date: Oct 9, 2010
16-
.. :Version: 0.7
16+
.. :Version: 0.7.1
1717
.. :Description: Complete user documentation, with examples, for the :mod:`cpp-netlib`.
1818
.. :Copyright: Copyright Glyn Matthews, Dean Michael Berris 2008-2010.
1919
.. Distributed under the Boost Software License, Version
@@ -33,11 +33,11 @@ some point in the future be submitted for review into Boost. A
3333
presentation about :mod:`cpp-netlib` was given at `BoostCon 2010`_,
3434
for which the `slides`_ and the `paper`_ can be found on-line.
3535

36-
Sneak Peak
36+
Sneak Peek
3737
----------
3838

3939
The :mod:`cpp-netlib` allows you to write semantically consistent code for
40-
making different kinds of higher level network applications.
40+
making different kinds of higher level network applications.
4141

4242
The library allows for writing simple code for simple C++ HTTP client
4343
applications like:
@@ -60,7 +60,7 @@ Download
6060

6161
You can download the latest releases of the library at:
6262

63-
http://github.com/mikhailberis/cpp-netlib/downloads
63+
http://github.com/cpp-netlib/cpp-netlib/downloads
6464

6565
You can also get the latest developments from the Git_ repository at:
6666

@@ -69,7 +69,7 @@ You can also get the latest developments from the Git_ repository at:
6969
You can find more information about the progress of the development by checking
7070
the GitHub_ project page at:
7171

72-
http://github.com/mikhailberis/cpp-netlib
72+
http://github.com/cpp-netlib/cpp-netlib
7373

7474
Support
7575
-------
@@ -81,7 +81,7 @@ mailing list by joining via:
8181

8282
You may also file issues on the Github_ issue tracker at:
8383

84-
http://github.com/mikhailberis/cpp-netlib/issues
84+
http://github.com/cpp-netlib/cpp-netlib/issues
8585

8686
Contents
8787
--------
@@ -95,7 +95,6 @@ Contents
9595
in_depth.rst
9696
techniques.rst
9797
history.rst
98-
install.rst
9998
references.rst
10099

101100
.. _Boost: http://www.boost.org/

0 commit comments

Comments
 (0)