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:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-27 00:19:36 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-27 00:19:36 +0300
commitcd17b277f461fb585fa80600a0022c7323419897 (patch)
tree8b1d4cbe99cade1a130d3cead0978bf2fc6efcd2
parente712eae382d213ce3f4866ad6f5b3c84ce4f4409 (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 82c87936c..9a9113c13 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,24 @@
+Release 5.1.2 (in development)
+==============================
+
+Dependencies
+------------
+
+Incompatible changes
+--------------------
+
+Deprecated
+----------
+
+Features added
+--------------
+
+Bugs fixed
+----------
+
+Testing
+--------
+
Release 5.1.1 (released Jul 26, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index f1377c5d5..69b84e15c 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.1.1'
-__released__ = '5.1.1' # used when Sphinx builds its own docs
+__version__ = '5.1.2+'
+__released__ = '5.1.2' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -32,7 +32,7 @@ __released__ = '5.1.1' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (5, 1, 1, 'final', 0)
+version_info = (5, 1, 2, 'beta', 0)
package_dir = path.abspath(path.dirname(__file__))