Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-04-26 16:55:46 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-04-26 16:55:46 +0300
commit241be808218786ee7b684f36ea0b07846780ce50 (patch)
tree0a715ec0f6d0b74f8f439fdb733b801d89a212ac
parent49e711849af5ff7469cdacf4544a4725fbaff17f (diff)
Bump to 3.0.3 finalv3.0.3
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index 7e9a2c486..577d9cf82 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,5 @@
-Release 3.0.3 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
+Release 3.0.3 (released Apr 26, 2020)
+=====================================
Features added
--------------
@@ -21,9 +12,6 @@ Bugs fixed
* #7516: autodoc: crashes if target object raises an error on accessing
its attributes
-Testing
---------
-
Release 3.0.2 (released Apr 19, 2020)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 2d860bf9d..96b1bd4ad 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.3+'
+__version__ = '3.0.3'
__released__ = '3.0.3' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -43,7 +43,7 @@ __released__ = '3.0.3' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (3, 0, 3, 'beta', 0)
+version_info = (3, 0, 3, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))