Skip to content

Commit 6d2c4f7

Browse files
authored
🚀 RELEASE: v0.15.0 (#392)
1 parent ea11ca0 commit 6d2c4f7

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## 0.15.0 - 2021-06-13
4+
5+
### Upgraded to `sphinx` v4 ⬆️
6+
7+
A principe change in this release is to updates the requirements of myst-parser from `sphinx>=2,<4` to `sphinx>=3,<5`.
8+
9+
### Changed MathJax handling ♻️
10+
11+
Instead of removing all `$` processing for the whole project,
12+
during MyST document parsing, the top-level section is now given the classes `tex2jax_ignore` and `mathjax_ignore` (turning off default MathJax processing of all HTML elements)
13+
and MathJax is then configured to process elements with the `tex2jax_process|mathjax_process|math` classes.
14+
15+
See [the math syntax guide](docs/using/syntax.md#math-shortcuts) for further information.
16+
17+
### Set URL scheme defaults ‼️
18+
19+
The `myst_url_schemes` default is now: `("http", "https", "mailto", "ftp")`.
20+
This means that only these URL will be considered as external (e.g. `[](https://example.com)`),
21+
and references like `[](prefix:main)` will be considered as internal references.
22+
Set `myst_url_schemes = None`, to revert to the previous default.
23+
24+
### Added `myst_heading_slug_func` option 👌
25+
26+
Use this option to specify a custom function to auto-generate heading anchors (see [Auto-generated header anchors](docs/using/syntax-optional.md#auto-generated-header-anchors)).
27+
28+
Thanks to [@jpmckinney](https://github.com/jpmckinney)!
29+
330
## 0.14.0 - 2021-05-04
431

532
### Upgrade to `markdown-it-py` v1.0 ⬆️

myst_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import TYPE_CHECKING
22

3-
__version__ = "0.14.0"
3+
__version__ = "0.15.0"
44

55

66
if TYPE_CHECKING:

0 commit comments

Comments
 (0)