summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2020-10-12 15:49:14 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2020-10-12 15:57:07 -0400
commitb4a399ca1a39244a84a2dda0ee3fa2d8f17916fa (patch)
tree900bdf81ba557f4240b8802bb3c6e5c49442a0fa
parent5fdf7d47aa90a0983fa356b577a2ff5e16e68147 (diff)
downloadpython-markdown-b4a399ca1a39244a84a2dda0ee3fa2d8f17916fa.tar.gz
Bump version to 3.3.13.3.1
-rw-r--r--docs/change_log/index.md2
-rw-r--r--docs/contributing.md6
-rw-r--r--markdown/__meta__.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/change_log/index.md b/docs/change_log/index.md
index 3b2eea5..58e456d 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.1 (a bug-fix release).
+Oct 12, 2020: version 3.3.1 (a bug-fix release).
* Correctly parse raw `script` and `style` tags (#1036).
* Ensure consistent class handling by `fenced_code` and `codehilite` (#1032).
diff --git a/docs/contributing.md b/docs/contributing.md
index 1dbdd4b..20f21c2 100644
--- a/docs/contributing.md
+++ b/docs/contributing.md
@@ -346,7 +346,7 @@ with no arguments. See help (`tox -h`) for more options.
Python-Markdown follows [Semantic Versioning] and uses the
`MAJOR.MINOR.PATCH[.dev#|a#|b#|rc#]` format for identifying releases. The status
of the `master` branch should always be identified in the `__version_info__`
-tuple defined in [`markdown/__init__.py`][markdown/__init__.py]. The contents of
+tuple defined in [`markdown/__meta__.py`][markdown/__meta__.py]. The contents of
that tuple will automatically be converted into a normalized version which
conforms to [PEP 440]. An invalid `__version_info__` tuple will raise an error,
preventing the library from running and the package from building.
@@ -398,7 +398,7 @@ following steps:
2. Confirm that the release notes and change log have been updated and indicate
the date of the new release.
-3. Update the version defined in [`markdown/__init__.py`][markdown/__init__.py].
+3. Update the version defined in [`markdown/__meta__.py`][markdown/__meta__.py].
4. Build a local copy of the documentation, browse through the pages and
confirm that no obvious issues exist with the documentation.
@@ -509,7 +509,7 @@ label from the same group.
[aspell]: http://aspell.net/
[test tools]: test_tools.md
[Semantic Versioning]: https://semver.org/
-[markdown/__init__.py]: https://github.com/Python-Markdown/markdown/blob/master/markdown/__init__.py#L43
+[markdown/__meta__.py]: https://github.com/Python-Markdown/markdown/blob/master/markdown/__meta__.py#L29
[PEP 440]: https://www.python.org/dev/peps/pep-0440/
[PyPI]: https://pypi.org/project/Markdown/
[Python-Markdown/Python-Markdown.github.io]: https://github.com/Python-Markdown/Python-Markdown.github.io
diff --git a/markdown/__meta__.py b/markdown/__meta__.py
index a6f6e48..09ce6e7 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, 0, 'final', 0)
+__version_info__ = (3, 3, 1, 'final', 0)
def _get_version(version_info):