Skip to content

Commit

Permalink
Merge pull request #38 from twodrops/feature/37_parallel_build
Browse files Browse the repository at this point in the history
#37 Added support for sphinx parallel build
  • Loading branch information
milliams authored Apr 28, 2022
2 parents 50bae69 + d1776f6 commit 35b0f72
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.12 (Apr 25, 2022)
=====================

- Add support for sphinx parallel read/write [PR #37]


1.11.1 (Nov 15, 2021)
=====================

Expand Down
8 changes: 7 additions & 1 deletion sphinxcontrib/doxylink/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
__version__ = '1.11.1'
__version__ = '1.12'


def setup(app):
from .doxylink import setup_doxylink_roles
app.add_config_value('doxylink', {}, 'env')
app.add_config_value('doxylink_pdf_files', {}, 'env')
app.connect('builder-inited', setup_doxylink_roles)

return {
"version": __version__,
"parallel_read_safe": True,
"parallel_write_safe": True,
}

0 comments on commit 35b0f72

Please sign in to comment.