summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2020-10-25 16:16:19 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2020-10-25 16:19:54 -0400
commit447da662b0c9548941a44a911e45c7cf6ad32861 (patch)
tree7c7a2427d105442e0e094a8e70a532fcb23edd75
parent11c9e179390ba4e3fbc5ed35b9af16ea93f7d5ca (diff)
downloadpython-markdown-447da662b0c9548941a44a911e45c7cf6ad32861.tar.gz
Bump version to 3.3.33.3.3
-rw-r--r--docs/change_log/index.md2
-rw-r--r--markdown/__meta__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/change_log/index.md b/docs/change_log/index.md
index fd9ba20..632449a 100644
--- a/docs/change_log/index.md
+++ b/docs/change_log/index.md
@@ -3,7 +3,7 @@ title: Change Log
Python-Markdown Change Log
=========================
-Under development: version 3.3.3 (a bug-fix release).
+Oct 25, 2020: version 3.3.3 (a bug-fix release).
* Unify all block-level tags (#1047).
* Fix issue where some empty elements would have text rendered as `None` when using `md_in_html` (#1049).
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index a951fb8..c5b5a33 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, 2, 'final', 0)
+__version_info__ = (3, 3, 3, 'final', 0)
def _get_version(version_info):