Skip to content

Commit

Permalink
Bump to 5.0.0 beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed May 8, 2022
1 parent e770e25 commit ea3468d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 26 deletions.
25 changes: 2 additions & 23 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Release 5.0.0 (in development)
==============================
Release 5.0.0 beta1 (released May 09, 2022)
===========================================

Dependencies
------------
Expand Down Expand Up @@ -116,30 +116,9 @@ Bugs fixed
* #10318: ``:prepend:`` option of :rst:dir:`literalinclude` directive does not
work with ``:dedent:`` option

Testing
--------

Release 4.5.1 (in development)
==============================

Dependencies
------------

Incompatible changes
--------------------

Deprecated
----------

Features added
--------------

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

Testing
--------

Release 4.5.0 (released Mar 28, 2022)
=====================================

Expand Down
6 changes: 3 additions & 3 deletions sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')

__version__ = '5.0.0+'
__released__ = '5.0.0' # used when Sphinx builds its own docs
__version__ = '5.0.0b1'
__released__ = '5.0.0b1' # used when Sphinx builds its own docs

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

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

Expand Down

0 comments on commit ea3468d

Please sign in to comment.