diff --git a/doc/release_notes.rst b/doc/release_notes.rst index a324bd15..57cfb550 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -17,10 +17,40 @@ Release notes For release notes (sparsely) kept prior to 1.0.0, look at the `releases page on GitHub `__. +1.1.0 +----- + +Implemented enhancements +~~~~~~~~~~~~~~~~~~~~~~~~ + +- MAINT: Suggestions from reviewing test suite `#271 `__ (`rossbar `__) +- DEV: Add testing requirements `#267 `__ (`rossbar `__) +- BUG: Defer to autodoc for signatures `#221 `__ (`thequackdaddy `__) + +Fixed bugs +~~~~~~~~~~ + +- function signatures for \*args, \**kwargs objects off `#218 `__ +- BUG: Connect to earlier event `#269 `__ (`larsoner `__) + +Closed issues +~~~~~~~~~~~~~ + +- “Handler for event ‘autodoc-process-docstring’ threw an exception” `#268 `__ +- Timing of next release `#249 `__ +- self included in list of params for method `#220 `__ + +Additional notes +~~~~~~~~~~~~~~~~ + +- Due to merging of `#221 `__, self and cls no longer will appear in method signatures. + + 1.0.0 ----- -**Implemented enhancements:** +Implemented enhancements +~~~~~~~~~~~~~~~~~~~~~~~~ - ENH: Add args and kwargs to example `#258 `__ (`larsoner `__) - MAINT,STY: Upgrade to bionic, and change style similar to NumPy `#253 `__ (`mwtoews `__) @@ -71,21 +101,3 @@ Additional notes - https://github.com/numpy/numpydoc/issues/215#issuecomment-568261611 - https://github.com/readthedocs/sphinx_rtd_theme/pull/838 - -1.1.0 ------ - -Fixed bugs -~~~~~~~~~~ - -- BUG: Defer to autodoc for signatures `#221 `__ (`thequackdaddy `__) - -Closed issues -~~~~~~~~~~~~~ - -- self included in list of params for method `#220 `__ - -Additional notes -~~~~~~~~~~~~~~~~ - -- Due to merging of `#221 `__, self and cls no longer will appear in method signatures. diff --git a/numpydoc/__init__.py b/numpydoc/__init__.py index e2a6cdd4..3529803c 100644 --- a/numpydoc/__init__.py +++ b/numpydoc/__init__.py @@ -2,7 +2,7 @@ This package provides the numpydoc Sphinx extension for handling docstrings formatted according to the NumPy documentation format. """ -__version__ = '1.1.0.dev0' +__version__ = '1.1.0' def setup(app, *args, **kwargs):