-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce a new page for release notes
Let's document the more interesting features so that users are aware of what's new in each release.
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 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
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 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,29 @@ | ||
.. _releases: | ||
|
||
====================== | ||
Releases | ||
====================== | ||
|
||
fmf-1.4 | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
The :py:func:`fmf.filter()` function now supports **searching by | ||
node name**. Just specify the desired name instead of the ``key: | ||
value`` pair. For example, to search for all tests with the name | ||
starting with ``/test/core`` and tag ``quick`` you can do:: | ||
|
||
/tests/core/.* & tag: quick | ||
|
||
It is now possible to **escape boolean operators** ``|`` and ``&`` | ||
as well. This allows to use more complex regular expressions like | ||
this:: | ||
|
||
tag: Tier(1\|2\|3) | ||
|
||
The new :ref:`select<select>` directive can be used to **include | ||
branch nodes or skip leaf nodes** when searching the tree using | ||
the :py:meth:`fmf.Tree.climb` method. | ||
|
||
The :py:meth:`fmf.Tree.adjust` method now supports new parameter | ||
``additional_rules`` for providing **additional adjust rules** | ||
which are applied after the rules detected in the node itself. |