Skip to content

Commit 76ca270

Browse files
committed
Initial v1.1 release notes
1 parent 659c094 commit 76ca270

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

docs/robotremoteserver-1.1.rst

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
========================
2+
Python Remote Server 1.1
3+
========================
4+
5+
6+
.. default-role:: code
7+
8+
9+
This project implement a generic remote server for `Robot Framework`_ using
10+
Python. Version 1.1 is a new release with some high priority enhancements
11+
such as support for Python 3 and Robot Framework's dynamic library interface.
12+
There are no changes in this version compared to the earlier released
13+
Python Remote Server 1.1 release candidate 2.
14+
15+
If you have pip_ installed, just run
16+
``pip install --upgrade robotremoteserver``
17+
to install the latest release or use
18+
``pip install robotremoteserver==1.1``
19+
to install exactly this version. Alternatively you can download the source
20+
distribution from PyPI_ and install it manually.
21+
22+
Python Remote Server 1.1 was released on Wednesday September 27, 2017.
23+
24+
.. _Robot Framework: http://robotframework.org
25+
.. _pip: http://pip-installer.org
26+
.. _PyPI: https://pypi.python.org/pypi/robotremoteserver
27+
28+
29+
.. contents::
30+
:depth: 2
31+
:local:
32+
33+
Most important enhancements
34+
===========================
35+
36+
The most important enhancement in this release is Python 3 support (`#17`_)
37+
but the support for Robot Framework's dynamic library API (`#18`_) is
38+
very important too.
39+
40+
Other high priority enhancements are the support for starting the server on
41+
background (`#22`_) and possibility to use the `@keyword` decorator (`#35`_).
42+
43+
Acknowledgements
44+
================
45+
46+
User `@epronk <https://github.com/epronk>`_ implemented support for
47+
`@keyword` decorator (`#35`_) and Kevin Ormbrek (`@ombre42
48+
<https://github.com/ombre42>`_) provided initial pull request to support
49+
the dynamic library interface (`#18`_).
50+
51+
Thanks also everyone who has submitted issues, tested the preview releases,
52+
or helped otherwise!
53+
54+
Full list of fixes and enhancements
55+
===================================
56+
57+
.. list-table::
58+
:header-rows: 1
59+
60+
* - ID
61+
- Type
62+
- Priority
63+
- Summary
64+
* - `#17`_
65+
- enhancement
66+
- critical
67+
- Python 3 support
68+
* - `#18`_
69+
- enhancement
70+
- critical
71+
- Support for dynamic library API
72+
* - `#22`_
73+
- enhancement
74+
- high
75+
- Support starting server on background
76+
* - `#35`_
77+
- enhancement
78+
- high
79+
- Support `@keyword` decorator
80+
* - `#38`_
81+
- enhancement
82+
- medium
83+
- Support `get_keyword_tags` method that was added in RF 3.0.2
84+
85+
Altogether 5 issues. View on the `issue tracker <https://github.com/robotframework/PythonRemoteServer/issues?q=milestone%3Av1.1>`__.
86+
87+
.. _#17: https://github.com/PythonRemoteServer/issues/17
88+
.. _#18: https://github.com/PythonRemoteServer/issues/18
89+
.. _#22: https://github.com/PythonRemoteServer/issues/22
90+
.. _#35: https://github.com/PythonRemoteServer/issues/35
91+
.. _#38: https://github.com/PythonRemoteServer/issues/38

0 commit comments

Comments
 (0)