-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
63 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
:orphan: | ||
|
||
============== | ||
Robotidy 4.14.0 | ||
============== | ||
|
||
You can install the latest available version by running | ||
|
||
:: | ||
|
||
pip install --upgrade robotframework-tidy | ||
|
||
or to install exactly this version | ||
|
||
:: | ||
|
||
pip install robotframework-tidy==4.14.0 | ||
|
||
.. contents:: | ||
:depth: 2 | ||
:local: | ||
|
||
Transformers changes | ||
==================== | ||
|
||
Ignore comments in IndentNestedKeywords transformer (#702) | ||
---------------------------------------------------------- | ||
|
||
``IndentNestedKeywords`` moves comments before transformation. This is required in order to properly format different | ||
types of the source code (especially when expanding single line to multiple lines). However as side affect | ||
``IndentNestedKeywords`` moved the comments even if the code didn't require formatting:: | ||
|
||
*** Test Cases *** | ||
Keyword with commented out single line | ||
Run Keywords | ||
... No Operation | ||
# ... No Operation | ||
... No Operation | ||
|
||
In such case the code is already formatted and does not require moving the comments. After this release such | ||
comments will be left alone in a case where the code is already formatted. | ||
|
||
Use variable_separator when converting variable from camelCase in RenameVariables (#705) | ||
---------------------------------------------------------------------------------------- | ||
|
||
Previously ``variable_separator`` configuration was not respected when converting variable names from camelCase to | ||
snake_case. In result variable names were converted with spaces as the separator:: | ||
|
||
# from | ||
${camelCase} | ||
# to | ||
${camel case} | ||
|
||
Now the setting will be taken into account. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "4.13.0" | ||
__version__ = "4.14.0" |