Skip to content

Commit ce37be5

Browse files
authored
🚀 Release v4.0.0 (#954)
1 parent 850f7c9 commit ce37be5

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

Diff for: CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
# Changelog
22

3+
## 4.0.0 - 2024-08-05
4+
5+
This release bumps the supported versions of:
6+
7+
- Python to ``3.10`` and greater
8+
- Sphinx to ``>=7,<9``
9+
- Docutils to ``>=0.19,<0.22``
10+
11+
Additionally, footnotes are now parsed similar to the corresponding reStructuredText, in that resolution (between definitions and references) and ordering is now deferred to transforms on the doctree (in <gh-pr:931>).
12+
13+
This allows for the proper interaction with other docutils/sphinx transforms, including those that perform translations,
14+
and logging of warnings for duplicate/unreferenced footnote definitions and also for footnote references with no definitions.
15+
16+
See the [footnotes guide](#syntax/footnotes) for more information.
17+
18+
**Full Changelog**: [v3.0.1...v4.0.0](https://github.com/executablebooks/MyST-Parser/compare/v3.0.1...v4.0.0)
19+
320
## 3.0.1 - 2024-04-28
421

522
### 🐛 Bug Fixes
623

724
- Account for the final directive option having an empty value, by <gh-user:chrisjsewell> in <gh-pr:924>
825
- Re-allow indented directive option blocks, by <gh-user:chrisjsewell> in <gh-pr:925>
926

10-
**Full Changelog**: [v3.0.1...v3.0.0](https://github.com/executablebooks/MyST-Parser/compare/v3.0.1...v3.0.0)
27+
**Full Changelog**: [v3.0.0...v3.0.1](https://github.com/executablebooks/MyST-Parser/compare/v3.0.0...v3.0.1)
1128

1229
## 3.0.0 - 2024-04-23
1330

Diff for: myst_parser/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
and [Sphinx](https://github.com/sphinx-doc/sphinx).
44
"""
55

6-
__version__ = "3.0.1"
6+
__version__ = "4.0.0"
77

88

99
def setup(app):

0 commit comments

Comments
 (0)