Skip to content

Commit 32dad69

Browse files
committed
Bump to 3.5.0 final
1 parent ae16211 commit 32dad69

File tree

2 files changed

+8
-33
lines changed

2 files changed

+8
-33
lines changed

CHANGES

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Release 3.5.0 (in development)
2-
==============================
1+
Release 3.5.0 (released Feb 14, 2021)
2+
=====================================
33

44
Dependencies
55
------------
@@ -100,6 +100,8 @@ Bugs fixed
100100
* #8134: autodoc: crashes when mocked decorator takes arguments
101101
* #8800: autodoc: Uninitialized attributes in superclass are recognized as
102102
undocumented
103+
* #8655: autodoc: Failed to generate document if target module contains an
104+
object that raises an exception on ``hasattr()``
103105
* #8306: autosummary: mocked modules are documented as empty page when using
104106
:recursive: option
105107
* #8232: graphviz: Image node is not rendered if graph file is in subdirectory
@@ -156,39 +158,12 @@ Bugs fixed
156158
builds
157159
* #8865: LaTeX: Restructure the index nodes inside title nodes only on LaTeX
158160
builds
161+
* #8796: LaTeX: potentially critical low level TeX coding mistake has gone
162+
unnoticed so far
159163
* C, :rst:dir:`c:alias` skip symbols without explicit declarations
160164
instead of crashing.
161165
* C, :rst:dir:`c:alias` give a warning when the root symbol is not declared.
162-
163-
Testing
164-
--------
165-
166-
Release 3.4.4 (in development)
167-
==============================
168-
169-
Dependencies
170-
------------
171-
172-
Incompatible changes
173-
--------------------
174-
175-
Deprecated
176-
----------
177-
178-
Features added
179-
--------------
180-
181-
Bugs fixed
182-
----------
183-
184-
* #8655: autodoc: Failed to generate document if target module contains an
185-
object that raises an exception on ``hasattr()``
186166
* C, ``expr`` role should start symbol lookup in the current scope.
187-
* #8796: LaTeX: potentially critical low level TeX coding mistake has gone
188-
unnoticed so far
189-
190-
Testing
191-
--------
192167

193168
Release 3.4.3 (released Jan 08, 2021)
194169
=====================================

sphinx/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
warnings.filterwarnings('ignore', "'U' mode is deprecated",
3333
DeprecationWarning, module='docutils.io')
3434

35-
__version__ = '3.5.0+'
35+
__version__ = '3.5.0'
3636
__released__ = '3.5.0' # used when Sphinx builds its own docs
3737

3838
#: Version info for better programmatic use.
@@ -43,7 +43,7 @@
4343
#:
4444
#: .. versionadded:: 1.2
4545
#: Before version 1.2, check the string ``sphinx.__version__``.
46-
version_info = (3, 5, 0, 'beta', 0)
46+
version_info = (3, 5, 0, 'final', 0)
4747

4848
package_dir = path.abspath(path.dirname(__file__))
4949

0 commit comments

Comments
 (0)