Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0f6ed8a

Browse files
committed
Updated version and made minor doc fixes.
1 parent96084b8 commit0f6ed8a

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

‎boost/network/version.hpp

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22
#defineBOOST_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+
#defineBOOST_NETLIB_VERSION_MAJOR0
13+
#defineBOOST_NETLIB_VERSION_MINOR7
14+
#defineBOOST_NETLIB_VERSION_INCREMENT1
15+
916
#ifndef BOOST_NETLIB_VERSION
10-
#defineBOOST_NETLIB_VERSION"0.6"
11-
#endif
17+
#defineBOOST_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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 4 deletions
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 forGitHub_ 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 onforking_) and then submit a pull request (read up on submitting
@@ -70,7 +70,7 @@ Getting Boost
7070
=============
7171

7272
:mod:`cpp-netlib` depends onBoost_. 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 - <me@deanberris.com>
176-
176+

‎libs/network/doc/index.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
.. :Authors: Glyn Matthews <glyn.matthews@gmail.com>
1414
.. Dean Michael Berris <mikhailberis@gmail.com>
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-
SneakPeak
36+
SneakPeek
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 theGit_ 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
theGitHub_ 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 theGithub_ 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)

[8]ページ先頭

©2009-2025 Movatter.jp