diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-12-19 17:39:23 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-12-19 17:39:23 +0900 |
commit | bbee8e16b732887fefb17d34afc0243fa6610ab9 (patch) | |
tree | d3dc5838c370e7d54630a9bc958898b6b73909c9 | |
parent | 5cf55d1c901ca49481d7bf4021190b1ff737956d (diff) | |
download | sphinx-git-bbee8e16b732887fefb17d34afc0243fa6610ab9.tar.gz |
Bump version
-rw-r--r-- | CHANGES | 21 | ||||
-rw-r--r-- | sphinx/__init__.py | 6 |
2 files changed, 24 insertions, 3 deletions
@@ -1,3 +1,24 @@ +Release 4.3.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 4.3.2 (released Dec 19, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8d90f733a..83bbad837 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,8 +27,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.3.2' -__released__ = '4.3.2' # used when Sphinx builds its own docs +__version__ = '4.3.3+' +__released__ = '4.3.3' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -38,7 +38,7 @@ __released__ = '4.3.2' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 3, 2, 'final', 0) +version_info = (4, 3, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) |