summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2021-11-17 09:50:46 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2021-11-17 10:56:04 -0500
commit1d41f13c774696d651921601c827ed500e2aa285 (patch)
tree2223f3b876e2ea79ce1c05e61ccd57e927c41318
parentff35692c58c3143d3e1ccb7b76b9e3aa1de4ef9a (diff)
downloadpython-markdown-1d41f13c774696d651921601c827ed500e2aa285.tar.gz
Bump version to 3.3.63.3.6
-rw-r--r--docs/change_log/index.md4
-rw-r--r--markdown/__meta__.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/change_log/index.md b/docs/change_log/index.md
index 4a9357c..0a4e2f3 100644
--- a/docs/change_log/index.md
+++ b/docs/change_log/index.md
@@ -3,6 +3,10 @@ title: Change Log
Python-Markdown Change Log
=========================
+Nov 17, 2021: version 3.3.6 (a bug-fix release).
+
+* Fix a dependency issue (#1195, #1196).
+
Nov 16, 2021: version 3.3.5 (a bug-fix release).
* Make the `slugify_unicode` function not remove diacritical marks (#1118).
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index 0afb6a2..37ef099 100644
--- a/markdown/__meta__.py
+++ b/markdown/__meta__.py
@@ -26,7 +26,7 @@ License: BSD (see LICENSE.md for details).
# (1, 2, 0, 'beta', 2) => "1.2b2"
# (1, 2, 0, 'rc', 4) => "1.2rc4"
# (1, 2, 0, 'final', 0) => "1.2"
-__version_info__ = (3, 3, 5, 'final', 0)
+__version_info__ = (3, 3, 6, 'final', 0)
def _get_version(version_info):