Skip to content

Commit 1b44e06

Browse files
authored
🚀 Release v3.0.0 (#920)
1 parent 5ad2d6d commit 1b44e06

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

CHANGELOG.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# Changelog
22

3+
## 3.0.0 - 2024-04-23
4+
5+
### Upgraded dependencies
6+
7+
- ⬆️ Add support for Python 3.12 by <gh-user:hugovk> in <gh-pr:848>
8+
- ⬆️ Update docutils requirement from >=0.16,<0.21 to >=0.18,<0.22 by <gh-user:chrisjsewell> in <gh-pr:916>
9+
10+
### New features
11+
12+
- ✨ Allow for use of the `line-block` directive by <gh-user:chrisjsewell> in <gh-pr:900>
13+
- ✨ Emits sphinx include-read event by <gh-user:sumezulike> in <gh-pr:887>
14+
15+
### Improvements
16+
17+
- 👌 Nested parse attribution in `attr_block` by <gh-user:chrisjsewell> in <gh-pr:831>
18+
- 👌 Directive option parsing by <gh-user:chrisjsewell> in <gh-pr:796
19+
- 👌 Improve directive parsing warnings by <gh-user:chrisjsewell> in <gh-pr:893>
20+
- 👌 Allow for opening external links in new tabs (#856) by <gh-user:marjus45> in <gh-pr:857>
21+
22+
### Internal
23+
24+
- 🔧 Replace black, isort, pyupgrade with ruff formatter by <gh-user:chrisjsewell> in <gh-pr:833>
25+
- 🔧 remove redundant mypy config by <gh-user:danieleades> in <gh-pr:866>
26+
- 🔧 Add additional Ruff lints (and fix issues) by <gh-user:danieleades> in <gh-pr:862>
27+
- 🔧 mypy- disallow 'any generics' by <gh-user:danieleades> in <gh-pr:865>
28+
- 🔧 Fix docutils deprecation in option parsing by <gh-user:agoose77> in <gh-pr:842>
29+
30+
### Documentation
31+
32+
- 📚 Fix a broken link in configuration.md by <gh-user:zupo> in <gh-pr:907>
33+
- 📚 Add linkify dependency to contributing docs. by <gh-user:jhcole> in <gh-pr:792>
34+
- 📚 Fix the double `used` in docs/syntax/math.md by <gh-user:ice-tong> in <gh-pr:810>
35+
- 📚 Also add linkify to pip install command in README by <gh-user:n-peugnet> in <gh-pr:851>
36+
- 📚 Fix the code section title in live preview by <gh-user:BoboTiG> in <gh-pr:875>
37+
- 📚 Fix admonition example by <gh-user:72757373656c6c> in <gh-pr:904>
38+
- 📚 Fix url for jupyter book gallery by <gh-user:72757373656c6c> in <gh-pr:905>
39+
- 📚 Update theme version by <gh-user:chrisjsewell> in <gh-pr:918>
40+
- 📚 Fix typo by <gh-user:blakeNaccarato> in <gh-pr:911>
41+
- 📚 Fix architecture typo (#855) by <gh-user:72757373656c6c> in <gh-pr:910>
42+
43+
**Full Changelog**: [v2.0.0...v3.0.0](https://github.com/executablebooks/MyST-Parser/compare/v2.0.0...v3.0.0)
44+
345
## 2.0.0 - 2023-06-13
446

547
This release primarily updates core myst-parser dependencies,

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
"use_repository_button": True,
163163
"use_edit_page_button": True,
164164
"use_issues_button": True,
165-
# "announcement": "<b>v2.0.0</b> is now out! See the Changelog for details",
165+
# "announcement": "<b>v3.0.0</b> is now out! See the Changelog for details",
166166
}
167167
html_last_updated_fmt = ""
168168
# OpenGraph metadata

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__ = "2.0.0"
6+
__version__ = "3.0.0"
77

88

99
def setup(app):

0 commit comments

Comments
 (0)