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-03-27 18:58:54 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2022-03-27 18:58:54 +0300
commit4221d1a5163d023d80a34bd4a12e9c2a2c648ae3 (patch)
tree92d9f216424563408b1307ba0da52f6c287e5ef9
parent2329fdef8c20c6c75194f5d842b8f62ebad5c79d (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 373585b81..1874d1b1a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,24 @@
+Release 4.5.1 (in development)
+==============================
+
+Dependencies
+------------
+
+Incompatible changes
+--------------------
+
+Deprecated
+----------
+
+Features added
+--------------
+
+Bugs fixed
+----------
+
+Testing
+--------
+
Release 4.5.0 (released Mar 28, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 218f8fe30..7672b33a2 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -19,8 +19,8 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '4.5.0'
-__released__ = '4.5.0' # used when Sphinx builds its own docs
+__version__ = '4.5.1+'
+__released__ = '4.5.1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -30,7 +30,7 @@ __released__ = '4.5.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (4, 5, 0, 'final', 0)
+version_info = (4, 5, 1, 'beta', 0)
package_dir = path.abspath(path.dirname(__file__))