See all documentation for this version [here](https://qrules.rtfd.io/en/0.9.6).
💡 New features
<details>
<summary>Topology is now ordered (137)</summary>
This can be used to create a unique, deterministic ordered list of `Topology` instances. See https://github.com/ComPWA/ampform/issues/6, where one needs a unique way of picking a reference topology.
</details>
<details>
<summary>Implemented Topology.relabel_edges() method (138)</summary>
See how to use this method to permutate final state IDs in a `Topology` case [here](https://qrules--138.org.readthedocs.build/en/138/api/qrules.topology.html#qrules.topology.Topology.relabel_edges).
</details>
<details>
<summary>qrules.io.asdot() function now accepts Graphviz attributes (139)</summary>
Accept Graphviz attributes in `qrules.io.asdot()`, so that the edges, nodes and overall DOT visualization of `StateTransition`s etc. can be styled. See [here](https://qrules--139.org.readthedocs.build/en/139/usage/visualize.html#styling) how to use.
</details>
<details>
<summary>Number of threads can now be set globally (140)</summary>
Closes 10 Closes 11
Added a new class [`NumberOfThreads`](https://qrules--140.org.readthedocs.build/en/140/api/qrules.settings.html#qrules.settings.NumberOfThreads) under the [`settings`](https://qrules--140.org.readthedocs.build/en/140/api/qrules.settings.html) module that makes it possible to set the number of threads globally. This is mainly useful in the tests, where we want to run the `StateTransitionManager` single-threaded for test coverage (#11). Previously this was done by setting `number_of_threads=1` in each test.
</details>
🐛 Bug fixes
<details>
<summary>Final state IDs in all StateTransitions match the order of the final_state argument in generate_transitions() (145)</summary>
Closes 143
Compare [this visualization in v0.9.5](https://qrules.readthedocs.io/en/0.9.5/usage/ls-coupling.html#check-with-qrules) with [the one for this PR](https://qrules--145.org.readthedocs.build/en/145/usage/ls-coupling.html#check-with-qrules).
- 10379d2 adds a test [that fails](https://github.com/ComPWA/qrules/runs/4980455593) the check described in #143
- 2e91cb4 [fixes](https://github.com/ComPWA/qrules/runs/4980458314) that test
</details>
📝 Documentation
<details>
<summary>Notebook pages can now be opened in Deepnote (136)</summary>
Closes https://github.com/ComPWA/repo-maintenance/issues/43
[](https://qrules--136.org.readthedocs.build/en/136/usage.html)
</details>
<details>
<summary>Default graphviz background is now transparent (141)</summary>
Follow-up to 139. Consequence is that exported PNG and SVG files have no background. Preview [here](https://qrules--141.org.readthedocs.build/en/141/usage/visualize.html).
Get old behaviour with `qrules.io.asdot(..., bgcolor="white")`.
</details>
<details>
<summary>Code examples are automatically linked to reference documentation (147)</summary>
All code examples are now clickable with links to corresponding reference documentation (also external links APIs) with [`sphinx-codeautolink`](https://sphinx-codeautolink.readthedocs.io). Closes https://github.com/ComPWA/compwa-org/issues/106 [](https://qrules--147.org.readthedocs.build/en/147/usage/reaction.html#define-the-problem-set)
</details>
🖱️ Developer Experience
<details>
<summary>Changed upgrade cron job to bi-weekly (135)</summary>
</details>
<details>
<summary>Installed jupyterlab-myst for MyST editing (147)</summary>
Installed [`jupyterlab-myst`](https://github.com/executablebooks/jupyterlab-myst)
</details>
<details>
<summary>Updated black formatting style (147)</summary>
Updated to the first non-beta black release [22.1.0](https://github.com/psf/black/releases/tag/22.1.0). Most important style effect: [no space around power operator `**`](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-breaks-binary-operators).
</details>