diff --git a/doc/release/notes.rst b/doc/release/notes.rst index 3dca7339..b4f7fb73 100644 --- a/doc/release/notes.rst +++ b/doc/release/notes.rst @@ -1,3 +1,75 @@ +1.8.0rc0 +======== + +We're happy to announce the release of numpydoc 1.8.0rc0! + +Enhancements +------------ + +- Unify CLIs (`#537 `_). +- Move "Attributes" and "Methods" below "Parameters" (`#571 `_). + +Bug Fixes +--------- + +- FIX: coroutines can have a return statement (`#542 `_). +- Unwrap decorated objects for YD01 validation check (`#541 `_). +- Fix bug with validation encoding (`#550 `_). + +Documentation +------------- + +- Classify development status as Production/Stable (`#548 `_). +- Add note about TOML regex; fix typo (`#552 `_). +- DOC: Clarify recommendations regarding use of backticks (`#525 `_). + +Maintenance +----------- + +- Fix typo in label-check.yml (`#538 `_). +- [pre-commit.ci] pre-commit autoupdate (`#539 `_). +- DEV: Rm xfails from pytest summary (`#540 `_). +- Drop Python 3.8 support (`#545 `_). +- Clean up old sphinx cruft (`#549 `_). +- Test on sphinx 7.3 (`#547 `_). +- Require GHA update grouping (`#553 `_). +- Update pre-commit config (`#554 `_). +- Use ruff for linting and formatting (`#555 `_). +- Use intersphinx registry to avoid out of date links (`#563 `_). +- Do not rely on requirements.txt in ci, use .[test,doc] (`#566 `_). +- CI: update action that got moved org (`#567 `_). +- Fix navbar for documentation pages (`#569 `_). +- [pre-commit.ci] pre-commit autoupdate (`#570 `_). +- docscrape: fixes from SciPy (`#576 `_). + +Contributors +------------ + +10 authors added to this release (alphabetically): + +- Brigitta Sipőcz (`@bsipocz `_) +- Eric Larson (`@larsoner `_) +- Jarrod Millman (`@jarrodmillman `_) +- Lucas Colley (`@lucascolley `_) +- M Bussonnier (`@Carreau `_) +- Matt Haberland (`@mdhaber `_) +- Melissa Weber Mendonça (`@melissawm `_) +- Ross Barnowski (`@rossbar `_) +- Stefanie Molin (`@stefmolin `_) +- Thomas A Caswell (`@tacaswell `_) + +7 reviewers added to this release (alphabetically): + +- Eric Larson (`@larsoner `_) +- Jarrod Millman (`@jarrodmillman `_) +- M Bussonnier (`@Carreau `_) +- Matt Haberland (`@mdhaber `_) +- Ross Barnowski (`@rossbar `_) +- Stefan van der Walt (`@stefanv `_) +- Stefanie Molin (`@stefmolin `_) + +_These lists are automatically generated, and may not be complete or may contain duplicates._ + 1.7.0 ===== diff --git a/numpydoc/_version.py b/numpydoc/_version.py index df1d1074..5f18c551 100644 --- a/numpydoc/_version.py +++ b/numpydoc/_version.py @@ -1 +1 @@ -__version__ = "1.8.0rc0.dev0" +__version__ = "1.8.0rc0"