Skip to content

Commit 56b03b2

Browse files
committed
Bump version to 3.3.2
1 parent 2766698 commit 56b03b2

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: manual deploy
2+
3+
on:
4+
workflow_dispatch
5+
6+
jobs:
7+
8+
ghpages:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Setup Python
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: 3.7
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip setuptools
19+
python -m pip install -r doc-requirements.txt
20+
- name: Build
21+
run: |
22+
python -m mkdocs build --clean --verbose
23+
- name: Publish
24+
if: success()
25+
uses: peaceiris/actions-gh-pages@v3
26+
with:
27+
deploy_key: ${{ secrets.PAGES_DEPLOY_KEY }}
28+
external_repository: Python-Markdown/Python-Markdown.github.io
29+
publish_branch: master
30+
publish_dir: ./site

docs/change_log/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ title: Change Log
33
Python-Markdown Change Log
44
=========================
55

6+
Oct 19, 2020: version 3.3.2 (a bug-fix release).
7+
8+
* Properly parse inline HTML in md_in_html (#1040 & #1045).
9+
* Avoid crashing when md_in_html fails (#1040).
10+
611
Oct 12, 2020: version 3.3.1 (a bug-fix release).
712

813
* Correctly parse raw `script` and `style` tags (#1036).

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, 1, 'final', 0)
29+
__version_info__ = (3, 3, 2, 'final', 0)
3030

3131

3232
def _get_version(version_info):

0 commit comments

Comments
 (0)