diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-01-07 17:45:46 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-01-07 17:45:46 +0000 |
commit | ddbc5b57f467823d600341ed1cfe5bedde5d7b64 (patch) | |
tree | 368149575dc60a2398fadeafbde5258e9f37b968 | |
parent | 393b40825282311a8ba81c830ef3c6fae9335c32 (diff) | |
download | sphinx-git-ddbc5b57f467823d600341ed1cfe5bedde5d7b64.tar.gz |
Bump version
-rw-r--r-- | CHANGES | 21 | ||||
-rw-r--r-- | sphinx/__init__.py | 6 |
2 files changed, 24 insertions, 3 deletions
@@ -1,3 +1,24 @@ +Release 6.1.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 6.1.2 (released Jan 07, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index eeef30345..5c3e705e2 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -19,7 +19,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '6.1.2' +__version__ = '6.1.3' __display_version__ = __version__ # used for command line version #: Version info for better programmatic use. @@ -30,11 +30,11 @@ __display_version__ = __version__ # used for command line version #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (6, 1, 2, 'final', 0) +version_info = (6, 1, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) -_in_development = False +_in_development = True if _in_development: # Only import subprocess if needed import subprocess |