From b9eeb59dcefe40eec835d6e99770d7e5c88de8ef Mon Sep 17 00:00:00 2001 From: Tatu Aalto Date: Sun, 5 Feb 2023 22:19:38 +0200 Subject: [PATCH] Release notes for 3.0.0 --- .../releasenotes/robotstatuschecker-3.0.0.rst | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 docs/releasenotes/robotstatuschecker-3.0.0.rst diff --git a/docs/releasenotes/robotstatuschecker-3.0.0.rst b/docs/releasenotes/robotstatuschecker-3.0.0.rst new file mode 100644 index 0000000..c9d5766 --- /dev/null +++ b/docs/releasenotes/robotstatuschecker-3.0.0.rst @@ -0,0 +1,63 @@ +======================== +robotstatuschecker 3.0.0 +======================== + + +.. default-role:: code + + +StatusChecker is a tool for validating that executed `Robot Framework`_ test cases +have expected statuses and log messages. It is mainly useful for Robot Framework +test library developers who want to use Robot Framework to also test their libraries. +StatusChecker 3 Python 3. + +StatusChecker project is hosted at GitHub and downloads are at PyPI_ +.. _Robot Framework: http://robotframework.org +.. _PyPI: https://github.com/robotframework/statuschecker +.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues?q=milestone%3Av3.0.0 + + +.. contents:: + :depth: 2 + :local: + +Most important enhancements +=========================== + +Add support for counting messages (`#39`_) +------------------------------------------ +Sometimes it is handy just count the keyword messages. Now it is possible +to use COUNT + + +Backwards incompatible changes +============================== + +Support RF 5 and 6 (`#40`_) +--------------------------- +Now only RF 5 and 6 are supported. + + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#39`_ + - enhancement + - high + - Add support for counting messages + * - `#40`_ + - enhancement + - high + - Support RF 5 and 6 + +Altogether 2 issues. View on the `issue tracker `__. + +.. _#39: https://github.com/robotframework/statuschecker/issues/39 +.. _#40: https://github.com/robotframework/statuschecker/issues/40