Skip to content

Commit 7c178cb

Browse files
author
Luiko Czub
committed
copyright and doc update for release 0.6.3
1 parent 01c2623 commit 7c178cb

29 files changed

+44
-36
lines changed

CHANGES.rst

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

4-
TestLink-API-Python-client v0.6.3 - Under Develop
4+
TestLink-API-Python-client release notes v0.6.3 (Nov. 2016)
55
------------------------------------------------------------
6-
support for TL 1.9.15 release
6+
support for TL 1.9.15 release and py26, py27, py33, py34 and py35
7+
8+
- further releases will be developed only against py27, py34 and py35
9+
- If there is a need to support other py versions, please give feedback
710

811
implement 1.9.15 new api interfaces - #54 #67 #69
912
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -67,6 +70,9 @@ TestLink web presents no login page (internal server error)
6770
- see `TL Mantis Ticket 7708 <http://mantis.testlink.org/view.php?id=7708>`_
6871
- solution: change *testlink-1.9.15/lib/functions/common.php* as described in `TL GitHub Commit db74644 <https://github.com/TestLinkOpenSourceTRMS/testlink-code/commit/db746440924aa3a572c8058a0595a9572cf36979>`_
6972

73+
Test projects with execution step results can not be deleted
74+
- details and solution see `TL Mantis Ticket 7765 <http://mantis.testlink.org/view.php?id=7765>`_
75+
7076
TestLink-API-Python-client v0.6.2 release notes v0.6.2 (Oct. 2015)
7177
-------------------------------------------------------------------
7278
support for TL 1.9.14 release and py26, py27, py33 and py34

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TestLink API Python Client
22
==========================
33

4-
Copyright 2011-2015
4+
Copyright 2011-2016
55
James Stock, Olivier Renault, Luiko Czub, TestLink-API-Python-client developers
66

77
License `Apache License 2.0`_

doc/install.rst

+7-6
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ TestLink-API-Python-client Installation
77
Preconditions
88
-------------
99

10-
Currently the combinations Python 2.6.9/2.7.9/3.3.5/3.4.2 are tested with
10+
Currently the combinations Python 2.6.9/2.7.12/3.3.5/3.4.4/3.5.2 are tested with
1111
TestLink 1.9.15 including the fixes
12+
1213
- `TL 7696 <http://mantis.testlink.org/view.php?id=7696>`_ ,
13-
`TL 7708 <http://mantis.testlink.org/view.php?id=7708>` and
14-
`TL 7765 <http://mantis.testlink.org/view.php?id=7765>`
14+
`TL 7708 <http://mantis.testlink.org/view.php?id=7708>`_ and
15+
`TL 7765 <http://mantis.testlink.org/view.php?id=7765>`_
1516

16-
- Other combination might work - feedback is welcome :-)
17+
Other combination might work - feedback is welcome :-)
1718

1819
To use TestLink-API-Python-client under Py26, the module **argparse** must be
19-
installed additionally (Py27, Py33 and Py34 already includes this)::
20+
installed additionally (Py27, Py33, Py34 and Py35 already includes this)::
2021

2122
pip install argparse
2223

@@ -52,7 +53,7 @@ The source code can be retrieved as source distribution either
5253

5354
Install the archives using pip by running::
5455

55-
pip install TestLink-API-Python-client-0.4.7.zip
56+
pip install TestLink-API-Python-client-0.6.3.zip
5657
5758
Installing from source
5859
----------------------

example/TestLinkExample.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2011-2015 Olivier Renault, Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2011-2016 Olivier Renault, Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

example/TestLinkExampleGenericApi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

example/TestLinkExample_CF_KW.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

robot/TestlinkAPILibrary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2014 Luiko Czub
4+
# Copyright 2014-2016 Luiko Czub
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

robot/TestlinkSeLibExtension.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2014 Luiko Czub
4+
# Copyright 2014-2016 Luiko Czub
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

robot/tlapi.robot

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2014 Luiko Czub
1+
# Copyright 2014-2016 Luiko Czub
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

robot/tlweb.robot

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2014 Luiko Czub
1+
# Copyright 2014-2016 Luiko Czub
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

robot/tlweb_resource.robot

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2014 Luiko Czub
1+
# Copyright 2014-2016 Luiko Czub
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under Apache 2.0
77
#
@@ -21,6 +21,7 @@
2121
'Programming Language :: Python :: 2.7',
2222
'Programming Language :: Python :: 3.3',
2323
'Programming Language :: Python :: 3.4',
24+
'Programming Language :: Python :: 3.5',
2425
'Topic :: Software Development :: Testing',
2526
'Topic :: Software Development :: Libraries :: Python Modules'
2627
]

src/testlink/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 TestLink-API-Python-client developers
4+
# Copyright 2012-2016 TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/proxiedtransport.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2014-2015 Mario Benito, TestLink-API-Python-client developers
4+
# Copyright 2014-2016 Mario Benito, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkapi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2011-2015 Luiko Czub, Olivier Renault, James Stock, TestLink-API-Python-client developers
4+
# Copyright 2011-2016 Luiko Czub, Olivier Renault, James Stock, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkapigeneric.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkargs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkdecorators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkerrors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Patrick Dassier, Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Patrick Dassier, Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/testlinkhelper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

src/testlink/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 TestLink-API-Python-client developers
4+
# Copyright 2013-2016 TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -17,6 +17,6 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.6.3-alpha'
20+
VERSION = '0.6.3'
2121
TL_RELEASE = '1.9.15'
2222

test/utest-offline/testlinkapi_offline_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-offline/testlinkapigeneric_offline_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-offline/testlinkargs_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-offline/testlinkdecorators_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-offline/testlinkhelper_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-online/testlinkapi_callserver_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-online/testlinkapi_generic_online_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2013-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2013-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

test/utest-online/testlinkapi_online_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python
22
# -*- coding: UTF-8 -*-
33

4-
# Copyright 2012-2015 Luiko Czub, TestLink-API-Python-client developers
4+
# Copyright 2012-2016 Luiko Czub, TestLink-API-Python-client developers
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)