Skip to content

Commit

Permalink
Merge branch '3.5.x' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed Mar 6, 2021
2 parents c2fac1e + 4f8cb86 commit f7768d8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
15 changes: 11 additions & 4 deletions CHANGES
@@ -1,4 +1,4 @@
Release 3.5.2 (in development)
Release 3.5.3 (in development)
==============================

Dependencies
Expand All @@ -16,12 +16,19 @@ Features added
Bugs fixed
----------

* #8936: LaTeX: A custom LaTeX builder fails with unknown node error
* #8952: Exceptions raised in a Directive cause parallel builds to hang

Testing
--------

Release 3.5.2 (released Mar 06, 2021)
=====================================

Bugs fixed
----------

* #8943: i18n: Crashed by broken translation messages in ES, EL and HR
* #8936: LaTeX: A custom LaTeX builder fails with unknown node error
* #8952: Exceptions raised in a Directive cause parallel builds to hang

Release 3.5.1 (released Feb 16, 2021)
=====================================

Expand Down
6 changes: 3 additions & 3 deletions sphinx/__init__.py
Expand Up @@ -32,8 +32,8 @@
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')

__version__ = '3.5.2+'
__released__ = '3.5.2' # used when Sphinx builds its own docs
__version__ = '3.5.3+'
__released__ = '3.5.3' # used when Sphinx builds its own docs

#: Version info for better programmatic use.
#:
Expand All @@ -43,7 +43,7 @@
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (3, 5, 2, 'beta', 0)
version_info = (3, 5, 3, 'beta', 0)

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

Expand Down
4 changes: 2 additions & 2 deletions sphinx/locale/el/LC_MESSAGES/sphinx.po
Expand Up @@ -3301,12 +3301,12 @@ msgstr "περισσότεροι από ένας στόχοι βρέθηκαν
#: sphinx/transforms/post_transforms/__init__.py:171
#, python-format
msgid "%s:%s reference target not found: %%(target)s"
msgstr "Ο %s:%s στόχος αναφοράς δεν βρέθηκε: %% (στόχος)"
msgstr "Ο %s:%s στόχος αναφοράς δεν βρέθηκε: %%(target)s"

#: sphinx/transforms/post_transforms/__init__.py:174
#, python-format
msgid "%r reference target not found: %%(target)s"
msgstr "ο στόχος αναφοράς %r δεν βρέθηκε: %%(στόχος)"
msgstr "ο στόχος αναφοράς %r δεν βρέθηκε: %%(target)s"

#: sphinx/transforms/post_transforms/images.py:86
#, python-format
Expand Down
2 changes: 1 addition & 1 deletion sphinx/locale/hr/LC_MESSAGES/sphinx.po
Expand Up @@ -3305,7 +3305,7 @@ msgstr "%s:%s reference target nije pronađen: %%(target)s"
#: sphinx/transforms/post_transforms/__init__.py:174
#, python-format
msgid "%r reference target not found: %%(target)s"
msgstr "%r referenca target nije pronađena: %% (target)"
msgstr "%r referenca target nije pronađena: %%(target)s"

#: sphinx/transforms/post_transforms/images.py:86
#, python-format
Expand Down

0 comments on commit f7768d8

Please sign in to comment.