Skip to content

Commit

Permalink
Bump version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
waylan committed Oct 12, 2020
1 parent 5fdf7d4 commit b4a399c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/change_log/index.md
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions docs/contributing.md
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion markdown/__meta__.py
Expand Up @@ -26,7 +26,7 @@
# (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):
Expand Down

0 comments on commit b4a399c

Please sign in to comment.