Skip to content

Commit 73a59dd

Browse files
author
Luiko Czub
committedAug 5, 2014
prepare release v0.5.1
1 parent 66f3ef7 commit 73a59dd

File tree

4 files changed

+12
-17
lines changed

4 files changed

+12
-17
lines changed
 

‎CHANGES.rst

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Changes in TestLink-API-Python-client Source Distribution
22
=========================================================
33

4-
TestLink-API-Python-client UNDER DEVELOP v0.5.1
5-
-----------------------------------------------------------
6-
support for future TL 1.9.11 release
4+
TestLink-API-Python-client release notes v0.5.1 (Aug. 2014)
5+
------------------------------------------------------------
6+
support for TestLink release 1.9.11
77

8-
implement 1.9.11 api changes - getLastExecutionResult #27
8+
implement 1.9.11 api change - getLastExecutionResult #27
99
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1010

1111
TestlinkAPIGeneric and TestlinkAPIClient api method getLastExecutionResult()
12-
accepts now following additional optional arguments (usable with TL >= 1.9.10)
12+
accepts now following additional optional arguments
1313

1414
- options = {'getBugs' : True / False}
1515

@@ -27,16 +27,11 @@ new TestlinkAPIGeneric and TestlinkAPIClient api method
2727
- assignTestCaseExecutionTask(<user>, <testplanid>, <testcaseexternalid>,
2828
[buildid=<buildid>], [buildname=<buildname>], [platformid=<platformid>],
2929
[platformname=<platformname>], [devKey=<devKey>])
30-
31-
known TL DEV1.9.11 problems
32-
33-
- `TestLink 0006433 <http://mantis.testlink.org/view.php?id=6433>`_:
34-
Add test case to test plan with assigning user raise PHP Fatal error
35-
- `TestLink 0006440 <http://mantis.testlink.org/view.php?id=6440>`_:
36-
assignTestCaseExecutionTask does not assign user
30+
31+
examples see `<example\TestLinkExample.py>`_
3732

3833

39-
TestLink-API-Python-client release notes v0.5.0 (Jul. 2014)
34+
TestLink-API-Python-client release notes v0.5.0 (Jul. 2014)
4035
------------------------------------------------------------
4136
support for TestLink release 1.9.10
4237

‎doc/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TestLink-API-Python-client Installation
44
Preconditions
55
-------------
66

7-
Currently the combinations Python 2.6.6/2.7.5 and TestLink 1.9.10 are tested.
7+
Currently the combinations Python 2.6.6/2.7.5 and TestLink 1.9.11 are tested.
88

99
- Other combination might work - feedback is welcome :-)
1010

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
execfile(join(dirname(__file__), 'src', 'testlink', 'version.py'))
1313

1414
CLASSIFIERS = [
15-
'Development Status :: 4 - Beta',
15+
'Development Status :: 5 - Production/Stable',
1616
'License :: OSI Approved :: Apache Software License',
1717
'Operating System :: OS Independent',
1818
'Programming Language :: Python :: 2.6',

‎src/testlink/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.5.1-dev25'
21-
TL_RELEASE = 'DEV 1.9.11 (gitorious ef1ca8b)'
20+
VERSION = '0.5.1'
21+
TL_RELEASE = '1.9.11'
2222

0 commit comments

Comments
 (0)
Please sign in to comment.