summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2021-02-24 14:48:42 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2021-02-24 14:52:47 -0500
commit14c2fa92302084e4850e5323ed56721e43fbbdb9 (patch)
treef8402befa4a9e449bb6d705c9f16e0bfcdb4a03f
parent613ad502a4cf2293901e8f67690c198fc22c8f88 (diff)
downloadpython-markdown-14c2fa92302084e4850e5323ed56721e43fbbdb9.tar.gz
Bump version to 3.3.43.3.4
-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 2b550e4..d7487a3 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.4 (a bug-fix release).
+Feb 24, 2021: version 3.3.4 (a bug-fix release).
* Properly parse unclosed tags in code spans (#1066).
* Properly parse processing instructions in md_in_html (#1070).
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index c5b5a33..79ae2f8 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, 3, 'final', 0)
+__version_info__ = (3, 3, 4, 'final', 0)
def _get_version(version_info):