diff --git a/docs/releasenotes/5.5.0.rst b/docs/releasenotes/5.5.0.rst new file mode 100644 index 00000000..03f4295a --- /dev/null +++ b/docs/releasenotes/5.5.0.rst @@ -0,0 +1,46 @@ +:orphan: + +============= +Robocop 5.5.0 +============= + +You can install the latest available version by running + +:: + + pip install --upgrade robotframework-robocop + +or to install exactly this version + +:: + + pip install robotframework-robocop==5.5.0 + +.. contents:: + :depth: 2 + :local: + +Rules +===== + +New no-embedded-keyword-arguments rule (#1118) +------------------------------------------------ + +New W10003 ``no-embedded-keyword-arguments`` rule that prohibits use of embedded keyword arguments. +It is community rule disabled by default. For more information see +https://robocop.readthedocs.io/en/stable/community_rules.html . + +Acknowledgements +================ + +Thanks to the whole community for submitting bug reports and feature requests. +Without you, Robocop wouldn't be in the place where it is now. All the feedback +is essential to drive the tool towards higher quality and better user +experience. + +If you want to help us more, consider contributing to the project directly. +We can offer our constant support to make the work fun and effective. We do +our best to create a supportive and welcoming environment for everyone. +Feel free to ping us on our official `#robocop-linter Slack channel`_ anytime. + +.. _#robocop-linter Slack channel: https://robotframework.slack.com/archives/C01AWSNKC2H \ No newline at end of file diff --git a/robocop/version.py b/robocop/version.py index fc30498f..016ab6b2 100644 --- a/robocop/version.py +++ b/robocop/version.py @@ -1 +1 @@ -__version__ = "5.4.0" +__version__ = "5.5.0"