Skip to content

Commit 4b3e646

Browse files
authored
🚀 RELEASE: v0.5.0 (#39)
1 parent 88e2aba commit 4b3e646

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
# Change Log
22

3+
## 0.5.0 - 2020-08-18
4+
5+
### Added ✨
6+
7+
- `deflist` and `dollarmath` plugins (see [plugins list](https://markdown-it-py.readthedocs.io/en/latest/plugins.html)).
8+
9+
### Improved 👌
10+
11+
- Added benchmarking tests and CI (see <https://executablebooks.github.io/markdown-it-py/dev/bench/>)
12+
- Improved performance of computing ordinals (=> 10-15% parsing speed increase).
13+
Thanks to [@sildar](https://github.com/sildar)!
14+
15+
### Fixed 🐛
16+
17+
- Stopped empty lines at the end of the document, after certain list blocks, raising an exception (#36).
18+
- Allow myst-role to accept names containing digits (0-9).
19+
320
## 0.4.9 - 2020-08-11
421

522
### Added ✨
623

7-
- containers plugin (see [plugins list](https://markdown-it-py.readthedocs.io/en/latest/plugins.html))
24+
- `containers` plugin (see [plugins list](https://markdown-it-py.readthedocs.io/en/latest/plugins.html))
825

926
### Documented 📚
1027

markdown_it/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .main import MarkdownIt # noqa: F401
22

33

4-
__version__ = "0.4.9"
4+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)