Skip to content

Commit d2baf3a

Browse files
committed
MAINT: Remove dev, update notes
1 parent 0a574ea commit d2baf3a

File tree

2 files changed

+32
-20
lines changed

2 files changed

+32
-20
lines changed

doc/release_notes.rst

+31-19
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,40 @@ Release notes
1717
For release notes (sparsely) kept prior to 1.0.0, look at the `releases page
1818
on GitHub <https://github.com/numpy/numpydoc/releases>`__.
1919

20+
1.1.0
21+
-----
22+
23+
Implemented enhancements
24+
~~~~~~~~~~~~~~~~~~~~~~~~
25+
26+
- MAINT: Suggestions from reviewing test suite `#271 <https://github.com/numpy/numpydoc/pull/271>`__ (`rossbar <https://github.com/rossbar>`__)
27+
- DEV: Add testing requirements `#267 <https://github.com/numpy/numpydoc/pull/267>`__ (`rossbar <https://github.com/rossbar>`__)
28+
- BUG: Defer to autodoc for signatures `#221 <https://github.com/numpy/numpydoc/pull/221>`__ (`thequackdaddy <https://github.com/thequackdaddy>`__)
29+
30+
Fixed bugs
31+
~~~~~~~~~~
32+
33+
- function signatures for \*args, \**kwargs objects off `#218 <https://github.com/numpy/numpydoc/issues/218>`__
34+
- BUG: Connect to earlier event `#269 <https://github.com/numpy/numpydoc/pull/269>`__ (`larsoner <https://github.com/larsoner>`__)
35+
36+
Closed issues
37+
~~~~~~~~~~~~~
38+
39+
- “Handler <function mangle_docstrings at 0x7f64b5ba57b8> for event ‘autodoc-process-docstring’ threw an exception” `#268 <https://github.com/numpy/numpydoc/issues/268>`__
40+
- Timing of next release `#249 <https://github.com/numpy/numpydoc/issues/249>`__
41+
- self included in list of params for method `#220 <https://github.com/numpy/numpydoc/issues/220>`__
42+
43+
Additional notes
44+
~~~~~~~~~~~~~~~~
45+
46+
- Due to merging of `#221 <https://github.com/numpy/numpydoc/pull/221>`__, self and cls no longer will appear in method signatures.
47+
48+
2049
1.0.0
2150
-----
2251

23-
**Implemented enhancements:**
52+
Implemented enhancements
53+
~~~~~~~~~~~~~~~~~~~~~~~~
2454

2555
- ENH: Add args and kwargs to example `#258 <https://github.com/numpy/numpydoc/pull/258>`__ (`larsoner <https://github.com/larsoner>`__)
2656
- MAINT,STY: Upgrade to bionic, and change style similar to NumPy `#253 <https://github.com/numpy/numpydoc/pull/253>`__ (`mwtoews <https://github.com/mwtoews>`__)
@@ -71,21 +101,3 @@ Additional notes
71101

72102
- https://github.com/numpy/numpydoc/issues/215#issuecomment-568261611
73103
- https://github.com/readthedocs/sphinx_rtd_theme/pull/838
74-
75-
1.1.0
76-
-----
77-
78-
Fixed bugs
79-
~~~~~~~~~~
80-
81-
- BUG: Defer to autodoc for signatures `#221 <https://github.com/numpy/numpydoc/pull/221>`__ (`thequackdaddy <https://github.com/thequackdaddy>`__)
82-
83-
Closed issues
84-
~~~~~~~~~~~~~
85-
86-
- self included in list of params for method `#220 <https://github.com/numpy/numpydoc/issues/220>`__
87-
88-
Additional notes
89-
~~~~~~~~~~~~~~~~
90-
91-
- Due to merging of `#221 <https://github.com/numpy/numpydoc/pull/221>`__, self and cls no longer will appear in method signatures.

numpydoc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This package provides the numpydoc Sphinx extension for handling docstrings
33
formatted according to the NumPy documentation format.
44
"""
5-
__version__ = '1.1.0.dev0'
5+
__version__ = '1.1.0'
66

77

88
def setup(app, *args, **kwargs):

0 commit comments

Comments
 (0)