diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-06 00:11:34 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-06 00:11:34 +0900 |
commit | 8178597970186365de88a44bb18c83f978b5ba05 (patch) | |
tree | a698fd270013be9333def500cdb08c14c21fcfb1 | |
parent | 9a4ab5403e56ca9db433afa1512f01a2c86913a5 (diff) | |
download | sphinx-git-3.0.0.tar.gz |
Bump to 3.0.0 finalv3.0.0
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ -Release 3.0.0 (in development) -============================== +Release 3.0.0 (released Apr 06, 2020) +===================================== Dependencies ------------ diff --git a/sphinx/__init__.py b/sphinx/__init__.py index a22735309..e98dd28d1 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,7 +32,7 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '3.0.0+' +__version__ = '3.0.0' __released__ = '3.0.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -43,7 +43,7 @@ __released__ = '3.0.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (3, 0, 0, 'beta', 2) +version_info = (3, 0, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |