Skip to content

Commit d2427ee

Browse files
committed
Release notes for 3.0.0
1 parent 87588d3 commit d2427ee

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

docs/PythonLibCore-3.0.0.rst

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
=========================
2+
Python Library Core 3.0.0
3+
=========================
4+
5+
6+
.. default-role:: code
7+
8+
9+
`Python Library Core`_ is a generic component making it easier to create
10+
bigger `Robot Framework`_ test libraries. Python Library Core 3.0.0 is
11+
a new release with fixing but with RF 4 and typing.Union resulting incorrect
12+
conversion. Also this release drops support for Rf 3.1
13+
14+
All issues targeted for Python Library Core v3.0.0 can be found
15+
from the `issue tracker`_.
16+
17+
**REMOVE ``--pre`` from the next command with final releases.**
18+
If you have pip_ installed, just run
19+
20+
::
21+
22+
pip install --pre --upgrade pip install robotframework-pythonlibcore
23+
24+
to install the latest available release or use
25+
26+
::
27+
28+
pip install pip install robotframework-pythonlibcore==3.0.0
29+
30+
to install exactly this version. Alternatively you can download the source
31+
distribution from PyPI_ and install it manually.
32+
33+
Python Library Core 3.0.0 was released on Friday June 11, 2021.
34+
35+
.. _PythonLibCore: https://github.com/robotframework/PythonLibCore
36+
.. _Robot Framework: http://robotframework.org
37+
.. _pip: http://pip-installer.org
38+
.. _PyPI: https://pypi.python.org/pypi/robotframework-robotlibcore
39+
.. _issue tracker: https://github.com/robotframework/PythonLibCore/issues?q=milestone%3Av3.0.0
40+
41+
42+
.. contents::
43+
:depth: 2
44+
:local:
45+
46+
Most important enhancements
47+
===========================
48+
${None} type conversion does not work correctly (`#81`_)
49+
---------------------------------------------------------
50+
When argument contained type hint with typing.Union and None default value,
51+
and keyword was used with ${None} default value, then argument was not converted
52+
correctly with RF 4.
53+
54+
Drop Python 2 and Python 3.5 support (`#76`_)
55+
---------------------------------------------
56+
Python 2 and 3.5 support is not anymore supported. Many thanks for Hugo van Kemenade for
57+
providing the PR.
58+
59+
Support only RF 3.2.2 and 4.0.1 (`#80`_)
60+
----------------------------------------
61+
Support for RF 3.1 is dropped. Only Rf 3.2 and 4.0 are supported by this release.
62+
63+
Full list of fixes and enhancements
64+
===================================
65+
66+
.. list-table::
67+
:header-rows: 1
68+
69+
* - ID
70+
- Type
71+
- Priority
72+
- Summary
73+
* - `#81`_
74+
- bug
75+
- critical
76+
- ${None} type conversion does not work correctly
77+
* - `#76`_
78+
- enhancement
79+
- critical
80+
- Drop Python 2 and Python 3.5 support
81+
* - `#80`_
82+
- enhancement
83+
- critical
84+
- Support only RF 3.2.2 and 4.0.1
85+
86+
Altogether 3 issues. View on the `issue tracker <https://github.com/robotframework/PythonLibCore/issues?q=milestone%3Av3.0.0>`__.
87+
88+
.. _#81: https://github.com/robotframework/PythonLibCore/issues/81
89+
.. _#76: https://github.com/robotframework/PythonLibCore/issues/76
90+
.. _#80: https://github.com/robotframework/PythonLibCore/issues/80

0 commit comments

Comments
 (0)