Skip to content

Commit b4a399c

Browse files
committed
Bump version to 3.3.1
1 parent 5fdf7d4 commit b4a399c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/change_log/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Change Log
33
Python-Markdown Change Log
44
=========================
55

6-
Under development: version 3.3.1 (a bug-fix release).
6+
Oct 12, 2020: version 3.3.1 (a bug-fix release).
77

88
* Correctly parse raw `script` and `style` tags (#1036).
99
* Ensure consistent class handling by `fenced_code` and `codehilite` (#1032).

docs/contributing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ with no arguments. See help (`tox -h`) for more options.
346346
Python-Markdown follows [Semantic Versioning] and uses the
347347
`MAJOR.MINOR.PATCH[.dev#|a#|b#|rc#]` format for identifying releases. The status
348348
of the `master` branch should always be identified in the `__version_info__`
349-
tuple defined in [`markdown/__init__.py`][markdown/__init__.py]. The contents of
349+
tuple defined in [`markdown/__meta__.py`][markdown/__meta__.py]. The contents of
350350
that tuple will automatically be converted into a normalized version which
351351
conforms to [PEP 440]. An invalid `__version_info__` tuple will raise an error,
352352
preventing the library from running and the package from building.
@@ -398,7 +398,7 @@ following steps:
398398
2. Confirm that the release notes and change log have been updated and indicate
399399
the date of the new release.
400400

401-
3. Update the version defined in [`markdown/__init__.py`][markdown/__init__.py].
401+
3. Update the version defined in [`markdown/__meta__.py`][markdown/__meta__.py].
402402

403403
4. Build a local copy of the documentation, browse through the pages and
404404
confirm that no obvious issues exist with the documentation.
@@ -509,7 +509,7 @@ label from the same group.
509509
[aspell]: http://aspell.net/
510510
[test tools]: test_tools.md
511511
[Semantic Versioning]: https://semver.org/
512-
[markdown/__init__.py]: https://github.com/Python-Markdown/markdown/blob/master/markdown/__init__.py#L43
512+
[markdown/__meta__.py]: https://github.com/Python-Markdown/markdown/blob/master/markdown/__meta__.py#L29
513513
[PEP 440]: https://www.python.org/dev/peps/pep-0440/
514514
[PyPI]: https://pypi.org/project/Markdown/
515515
[Python-Markdown/Python-Markdown.github.io]: https://github.com/Python-Markdown/Python-Markdown.github.io

markdown/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# (1, 2, 0, 'beta', 2) => "1.2b2"
2727
# (1, 2, 0, 'rc', 4) => "1.2rc4"
2828
# (1, 2, 0, 'final', 0) => "1.2"
29-
__version_info__ = (3, 3, 0, 'final', 0)
29+
__version_info__ = (3, 3, 1, 'final', 0)
3030

3131

3232
def _get_version(version_info):

0 commit comments

Comments
 (0)