diff --git a/docs/source/v1.0.md.inc b/docs/source/v1.0.md.inc index d54a6b823..c845f9f6a 100644 --- a/docs/source/v1.0.md.inc +++ b/docs/source/v1.0.md.inc @@ -1,10 +1,29 @@ -## v1.0.3 (released 2022/12/08) +## v1.0.3 (released 2022/12/18) + +### :warning: Behavior changes + +This backward-incompatible change was made before officially announcing +the release, so we are bumping the patch version number rather than the major +version number. + +- The `N_JOBS` parameter has been renamed to + [`n_jobs`](mne_bids_pipeline._config.n_jobs) for consistency + (#694 by @larsoner) ### :bug: Bug fixes - The `stable` documentation deployment was fixed (#682 by @larsoner ) +### :medical_symbol: Code health + +- Code quality now checked by [ruff](https://github.com/charliermarsh/ruff) + and [black](https://black.readthedocs.io/en/stable/) + (#689, #690, and #691 by @larsoner) +- Documentation building infrastructure improved by using newer mkdocs + extensions + (#693 by @hoechenberger) + ## v1.0.2 (released 2022/12/07) diff --git a/docs/source/v1.1.md.inc b/docs/source/v1.1.md.inc index 0bcb90691..50cfb0723 100644 --- a/docs/source/v1.1.md.inc +++ b/docs/source/v1.1.md.inc @@ -2,21 +2,14 @@ [//]: # (### :new: New features & enhancements) -[//]: # (- Whatever (#000 by @whoever ) +[//]: # (- Whatever (#000 by @whoever) ) -### :warning: Behavior changes +[//]: # (### :warning: Behavior changes) -- The `N_JOBS` parameter has been renamed to - [`n_jobs`](mne_bids_pipeline._config.n_jobs) for consistency - (#694 by @larsoner) +[//]: # (- Whatever (#000 by @whoever) ) -### :medical_symbol: Code health - -- Code quality now checked by [ruff](https://github.com/charliermarsh/ruff) - and [black](https://black.readthedocs.io/en/stable/) - (#689, #690, and #691 by @larsoner) -- Documentation building infrastructure improved by using newer mkdocs - extensions - (#693 by @hoechenberger) +[//]: # (### :medical_symbol: Code health) [//]: # (### :bug: Bug fixes) + +- Nothing yet diff --git a/mne_bids_pipeline/tests/conftest.py b/mne_bids_pipeline/tests/conftest.py index f8adbcec6..ab312baf6 100644 --- a/mne_bids_pipeline/tests/conftest.py +++ b/mne_bids_pipeline/tests/conftest.py @@ -24,6 +24,7 @@ def pytest_configure(config): ignore:`np.MachAr` is deprecated.*:DeprecationWarning ignore:The get_cmap function will be deprecated.*: ignore:make_current is deprecated.*:DeprecationWarning + ignore:`np.*` is a deprecated alias for .*:DeprecationWarning """ for warning_line in warning_lines.split("\n"): warning_line = warning_line.strip()