diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-02 22:22:21 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-02 22:22:21 +0900 |
commit | 17299d1392c9f0e5b911510c58c8e53883273275 (patch) | |
tree | 4dd9d949b98cb6fcb439eeb2a7a082e9354a92d6 /sphinx | |
parent | 24848f5a6ae160975ab7969640264b630a3a7ab0 (diff) | |
download | sphinx-git-17299d1392c9f0e5b911510c58c8e53883273275.tar.gz |
Bump version
Diffstat (limited to 'sphinx')
-rw-r--r-- | sphinx/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py index cd04aca62..4f0f28f47 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '3.3.0' -__released__ = '3.3.0' # used when Sphinx builds its own docs +__version__ = '3.3.1+' +__released__ = '3.3.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -43,7 +43,7 @@ __released__ = '3.3.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (3, 3, 0, 'final', 0) +version_info = (3, 3, 1, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) |