Skip to content

Commit c80d656

Browse files
committed
Bump version
1 parent 4e1004a commit c80d656

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

CHANGES

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Release 6.1.1 (in development)
2+
==============================
3+
4+
Dependencies
5+
------------
6+
7+
Incompatible changes
8+
--------------------
9+
10+
Deprecated
11+
----------
12+
13+
Features added
14+
--------------
15+
16+
Bugs fixed
17+
----------
18+
19+
Testing
20+
--------
21+
122
Release 6.1.0 (released Jan 05, 2023)
223
=====================================
324

sphinx/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2020
DeprecationWarning, module='docutils.frontend')
2121

22-
__version__ = '6.1.0'
22+
__version__ = '6.1.1'
2323
__display_version__ = __version__ # used for command line version
2424

2525
#: Version info for better programmatic use.
@@ -30,11 +30,11 @@
3030
#:
3131
#: .. versionadded:: 1.2
3232
#: Before version 1.2, check the string ``sphinx.__version__``.
33-
version_info = (6, 1, 0, 'final', 0)
33+
version_info = (6, 1, 1, 'beta', 0)
3434

3535
package_dir = path.abspath(path.dirname(__file__))
3636

37-
_in_development = False
37+
_in_development = True
3838
if _in_development:
3939
# Only import subprocess if needed
4040
import subprocess

0 commit comments

Comments
 (0)