Skip to content

Commit da05f66

Browse files
Release 3.0.36
1 parent 132f4ff commit da05f66

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGELOG
22
=========
33

4+
3.0.36: 2022-12-06
5+
------------------
6+
7+
Fixes:
8+
- Another Python 3.6 fix for a bug that was introduced in 3.0.34.
9+
10+
411
3.0.35: 2022-12-06
512
------------------
613

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = "3.0.35"
53+
version = "3.0.36"
5454
# The full version, including alpha/beta/rc tags.
55-
release = "3.0.35"
55+
release = "3.0.36"
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

src/prompt_toolkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .shortcuts import PromptSession, print_formatted_text, prompt
1919

2020
# Don't forget to update in `docs/conf.py`!
21-
__version__ = "3.0.35"
21+
__version__ = "3.0.36"
2222

2323
# Version tuple.
2424
VERSION = tuple(__version__.split("."))

0 commit comments

Comments
 (0)