Skip to content

Commit

Permalink
Merge branch '2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Apr 28, 2023
2 parents 6d5c9cd + e394bc8 commit f8618b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

- :release:`2.1.1 <2023-04-28>`
- :release:`2.0.1 <2023-04-28>`
- :bug:`-` Fix up an internal utility which monkeypatches a Sphinx/docutils
internal, so that it accepts arbitrary args/kwargs instead of exploding on
newer Sphinxes.
- :release:`2.1.0 <2023-02-24>`
- :feature:`-` Add a new configuration setting,
``releases_supported_versions``, allowing you to limit how many "Next 1.x
Expand Down
2 changes: 1 addition & 1 deletion releases/_version.py
@@ -1,2 +1,2 @@
__version_info__ = (2, 1, 0)
__version_info__ = (2, 1, 1)
__version__ = ".".join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion releases/util.py
Expand Up @@ -85,7 +85,7 @@ def parse_changelog(path, **kwargs):
return ret


def _faux_write_doctree(self, docname, doctree):
def _faux_write_doctree(self, docname, doctree, *args, **kwargs):
self._read_doctree = doctree


Expand Down

0 comments on commit f8618b3

Please sign in to comment.