Skip to content

Commit 094a6e0

Browse files
authored
Updated docs in preparation for v0.1.11 (#47)
1 parent 7c7786c commit 094a6e0

5 files changed

Lines changed: 18 additions & 5 deletions

File tree

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ env:
2323
- IPERF_VERSION="3.1.7"
2424
- IPERF_VERSION="3.2"
2525
- IPERF_VERSION="3.3"
26+
- IPERF_VERSION="3.4"
27+
- IPERF_VERSION="3.5"
28+
- IPERF_VERSION="3.6"
2629
before_install:
2730
# Download the various available iperf3 sources
2831
- if [[ "$IPERF_VERSION" == "3.0.6" ]]; then wget https://github.com/esnet/iperf/archive/3.0.6.tar.gz ;fi
@@ -42,6 +45,9 @@ before_install:
4245
- if [[ "$IPERF_VERSION" == "3.1.7" ]]; then wget https://github.com/esnet/iperf/archive/3.1.7.tar.gz ;fi
4346
- if [[ "$IPERF_VERSION" == "3.2" ]]; then wget https://github.com/esnet/iperf/archive/3.2.tar.gz ;fi
4447
- if [[ "$IPERF_VERSION" == "3.3" ]]; then wget https://github.com/esnet/iperf/archive/3.3.tar.gz ;fi
48+
- if [[ "$IPERF_VERSION" == "3.4" ]]; then wget https://github.com/esnet/iperf/archive/3.4.tar.gz ;fi
49+
- if [[ "$IPERF_VERSION" == "3.5" ]]; then wget https://github.com/esnet/iperf/archive/3.5.tar.gz ;fi
50+
- if [[ "$IPERF_VERSION" == "3.6" ]]; then wget https://github.com/esnet/iperf/archive/3.6.tar.gz ;fi
4551

4652
# Install iperf version selected above
4753
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tar xvf *.tar.gz ;fi
@@ -50,11 +56,11 @@ before_install:
5056
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./configure && make && sudo make install ;fi
5157
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd .. ;fi
5258
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export LD_LIBRARY_PATH=/usr/local/lib ;fi
53-
install:
59+
install:
5460
- "pip install -r requirements.txt"
5561
- "pip install coverage"
5662
- "pip install coveralls"
57-
script:
63+
script:
5864
- "coverage run --source=iperf3 setup.py test"
5965
after_success:
6066
coveralls

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Release History
44
---------------
55

6+
0.1.11 (2019-04-13)
7+
++++++++++++++++++
8+
- Fixed kB_s and MB_s in UDP test results (Thanks @gleichda)
9+
- Added omit option (Thanks @ChristofKaufmann)
10+
611
0.1.10 (2018-03-28)
712
+++++++++++++++++++
813
- Allow manual set of libiperf library path and name using lib_name kwarg on Iperf3 Class

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ Testing
130130
- 3.1.7
131131
- 3.2
132132
- 3.3
133+
- 3.4
134+
- 3.5
133135
- 3.6
134136

135137
- Test coverage reporting through `coveralls.io <https://coveralls.io/>`__

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = '0.1.10'
69+
version = '0.1.11'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '0.1.10'
71+
release = '0.1.11'
7272

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

iperf3/iperf3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class provides common settings for the :class:`Client` and :class:`Server`
3131
from Queue import Queue # Python2 compatibility
3232

3333

34-
__version__ = '0.1.10'
34+
__version__ = '0.1.11'
3535

3636

3737
MAX_UDP_BULKSIZE = (65535 - 8 - 20)

0 commit comments

Comments
 (0)