Skip to content

2.1.0

Choose a tag to compare

@bhirsz bhirsz released this 24 Mar 21:54
· 270 commits to main since this release
69e407e

Minor update with major change - standarized the empty lines count between sections in Robotidy and Robocop tool.

Transformers

Updated NormalizeNewLines to separate sections by two empty lines (instead of one). It's effort of normalizing
Robocop output (which suggest to use 2 empty lines) and Robotidy (which previously transformed with 1 empty line) (#536).

Previously:

*** Settings ***
Force Tags    tag

*** Test Cases ***
Test
    No Operation

Now:

*** Settings ***
Force Tags    tag


*** Test Cases ***
Test
    No Operation

If you wish to retain previous behaviour you can configure it:

robotidy --configure NormalizeNewLines:section_lines=1 <src>

or from configuration file:

[tool.robotidy]
configure = [
    "NormalizeNewLines : section_lines = 1"
]

Other

Add missing packaging dependency (#275)

Acknowledgements

Big thanks to @bollwyvl for detecting and fixing missing packaging dependency (and improving our requirements in general)