Skip to content

Commit

Permalink
馃殌 RELEASE: v2.0.0 (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Jun 13, 2023
1 parent 28a9df3 commit 4ae5863
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,38 @@
# Changelog

## 2.0.0 - 2023-06-13

This release primarily updates core myst-parser dependencies,
with some minor changes to parsing behaviour:

* 猬嗭笍 UPGRADE: `markdown-it-py` to v3 (<gh-pr:773>)
* This is mainly a non-breaking change, fixing some edge cases in parsing
* See: <https://github.com/executablebooks/markdown-it-py/releases/tag/v3.0.0>
and <https://github.com/executablebooks/mdit-py-plugins/releases/tag/v0.4.0>

* 猬嗭笍 UPGRADE: `linkify-it-py` to v2 (<gh-pr:675>)
* Also fixes some edge cases in parsing
* See: <https://github.com/tsutsu3/linkify-it-py/blob/main/CHANGELOG.md>

* 猬嗭笍 UPGRADE: Add support for `docutils` v0.20 (<gh-pr:775>)
* No significant changes, see <https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-20-2023-05-04>

* 猬嗭笍 UPGRADE: Add support for `sphinx` v7, and remove v5 support (<gh-pr:776>)
* No significant changes, see <https://www.sphinx-doc.org/en/master/changes.html>

* 猬嗭笍 UPGRADE: Remove Python 3.7 support and add testing for Python 3.11 (<gh-pr:772>)

* 馃憣 Improve default slug generation for heading anchors, thanks to <gh-user:Cimbali> (<gh-pr:777>)
* This change makes the slug generation closer to GitHub, in that, starting/ending whitespace will not be stripped.
For example, ``# ` a` b `c ` `` will now correctly create the slug `-a-b-c-` and not `a-b-c`

* 馃憣 IMPROVE: Substitution extension (<gh-pr:777>)
* Allow any value type (including dict, list, datetime) and emit a `myst.substitution` warning for errors in resolving the substitution content.

* 馃И Introduce a gate/check GHA job, thanks to <gh-user:webknjaz> (<gh-pr:635>)

**Full Changelog**: [v1.0.0...v2.0.0](https://github.com/executablebooks/MyST-Parser/compare/v1.0.0...v2.0.0)

## 1.0.0 - 2023-03-07

馃帀 **MyST-Parser 1.0.0** 馃帀
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -161,7 +161,7 @@
"use_repository_button": True,
"use_edit_page_button": True,
"use_issues_button": True,
"announcement": "<b>v1.0.0</b> is now out! See the Changelog for details",
"announcement": "<b>v2.0.0</b> is now out! See the Changelog for details",
}
html_last_updated_fmt = ""
# OpenGraph metadata
Expand Down
2 changes: 1 addition & 1 deletion myst_parser/__init__.py
Expand Up @@ -2,7 +2,7 @@
with bridges to [docutils](https://docutils.sourceforge.io/)
and [Sphinx](https://github.com/sphinx-doc/sphinx).
"""
__version__ = "1.0.0"
__version__ = "2.0.0"


def setup(app):
Expand Down

0 comments on commit 4ae5863

Please sign in to comment.