Skip to content

Commit 10f7dd0

Browse files
author
Luiko Czub
committedNov 15, 2013
version set to v0.4.5
1 parent ec0bc82 commit 10f7dd0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The user specific devKey are created inside TestLink, see
5252
```
5353
[PYTHON27]\Scripts\virtualenv [PYENV]\testlink
5454
[PYENV]\testlink\Scripts\activate
55-
pip install TestLink-0.4.5-RC1.zip
55+
pip install TestLink-0.4.5.zip
5656
```
5757

5858
Usage
@@ -115,7 +115,7 @@ Download
115115
--------
116116

117117
see [Releases]
118-
* please read [v0.4.5 release notes](https://github.com/lczub/TestLink-API-Python-client/releases/tag/v0.4.5-RC1)
118+
* please read [v0.4.5 release notes](https://github.com/lczub/TestLink-API-Python-client/releases/tag/v0.4.5)
119119
for changes between v0.4.0 and v0.4.5
120120

121121
Help
@@ -127,7 +127,7 @@ For (nearly all) implemented API methods you find in
127127
[example/TestLinkExample.py](example/TestLinkExample.py)
128128
an example, which although prints the reponse.
129129

130-
The Teslink API Client could be ask, what arguments a API method expects
130+
The Teslink API Client can be asked, what arguments a API method expects
131131

132132
```
133133
import testlink
@@ -138,7 +138,7 @@ createTestPlan(<testplanname>, <testprojectname>, [note=<note>], [active=<active
138138
create a test plan
139139
```
140140

141-
or a description of all implemented API method could be generated
141+
or a description of all implemented API method can be generated
142142

143143
```
144144
import testlink

‎src/testlink/testlinkapigeneric.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ def getTestCaseCustomFieldDesignValue(self):
256256
plus value and internal test case id
257257
'simple' => value plus custom field name, label, and type (as code).
258258
259-
attention - becareful with testcaseexternalid - it must include an '-'.
260-
otherwise TL returns
259+
attention - be careful with testcaseexternalid - it must include an '-'.
260+
otherwise TL (<=1.9.8) returns
261261
<ProtocolError for xmlrpc.php: 500 Internal Server Error> """
262262

263263
# /**
@@ -329,8 +329,8 @@ def getTestPlanByName(self):
329329
def getTestCase(self):
330330
""" get test case specification using external or internal id
331331
332-
attention - becareful with testcaseexternalid - it must inlcude an '-'.
333-
otherwise TL returns
332+
attention - be careful with testcaseexternalid - it must include an '-'.
333+
otherwise TL (<=1.9.8) returns
334334
<ProtocolError for xmlrpc.php: 500 Internal Server Error>"""
335335

336336
@decoApiCallAddDevKey

‎src/testlink/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.4.5-RC1'
20+
VERSION = '0.4.5'

0 commit comments

Comments
 (0)
Please sign in to comment.