Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.6.0 #580

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
:orphan:

==============
Robotidy 4.6.0
==============

Added new option to generate default configuration file and included two bug fixes.

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.6.0

.. contents::
:depth: 2
:local:


Fixes
=====

List transformers should now load configuration file (#562)
-----------------------------------------------------------

Transformers listed with ``--list`` option were affected by command line configuration but not by the configuration file.

SplitTooLongLine and InlineIf recursively parsing multi branch IFs (#578)
--------------------------------------------------------------------------

``SplitTooLongLine`` and ``InlineIf`` were taking long time to parse IFs with several branches because of the
redundant node visitor.

Thanks @Lakitna for discovering and fixing the issue.

Other features
==============

Generate configuration file (#563)
-----------------------------------

Expand Down
5 changes: 0 additions & 5 deletions docs/releasenotes/unreleased/fixes.1.rst

This file was deleted.

2 changes: 1 addition & 1 deletion robotidy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.5.0"
__version__ = "4.6.0"
Loading