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>2022-06-16 20:18:26 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2022-06-16 20:18:26 +0300
commit949984c4e26671fdf5490c33cf90d4db118aaa86 (patch)
treee3382f14c8dd1e28a9dda3c9d137615981fecc30
parent907d27dc6506c542c11a7dd16b560eb4be7da5fc (diff)
Bump version
-rw-r--r--CHANGES21
-rw-r--r--sphinx/__init__.py6
2 files changed, 24 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index d2d98db75..4afa807b6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,24 @@
+Release 5.0.3 (in development)
+==============================
+
+Dependencies
+------------
+
+Incompatible changes
+--------------------
+
+Deprecated
+----------
+
+Features added
+--------------
+
+Bugs fixed
+----------
+
+Testing
+--------
+
Release 5.0.2 (released Jun 17, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 1fb971405..0bf99b144 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
-__version__ = '5.0.2'
-__released__ = '5.0.2' # used when Sphinx builds its own docs
+__version__ = '5.0.3+'
+__released__ = '5.0.3' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -32,7 +32,7 @@ __released__ = '5.0.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (5, 0, 2, 'final', 0)
+version_info = (5, 0, 3, 'beta', 0)
package_dir = path.abspath(path.dirname(__file__))