From 153abf7d602c5c4f51633fcc386d8a10590fcecc Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Tue, 7 Mar 2023 19:31:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 ++++++++- docs/live-preview.md | 2 +- myst_parser/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4acbe60f..3f574281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.0.0 - 2023-03-07 + +🎉 **MyST-Parser 1.0.0** 🎉 + +This changes absolutely nothing in the code, or about the maintenance/release policy of this project. +But it does feel about time 😄 + ## 0.19.2 - 2023-03-02 ✨ NEW: Add myst_fence_as_directive config () @@ -31,7 +38,7 @@ and have interoperable rendering with tools like GitHub. - 📚 Add `html_last_updated_fmt = ""` to conf.py to fix documentation footer, thanks to () - 📚 Fix the sphinx-design example, thanks to () -## 0.19.1 - 2023-03-02 +## 0.19.1 - 2023-03-07 🐛 FIX `NoURI` error in doc reference resolution, for texinfo builds () diff --git a/docs/live-preview.md b/docs/live-preview.md index 52f7276a..d282bfa9 100644 --- a/docs/live-preview.md +++ b/docs/live-preview.md @@ -3,7 +3,7 @@ py-config: splashscreen: autoclose: true packages: - - myst-docutils==0.19 + - myst-docutils==1.0 - docutils==0.19 - pygments --- diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index 66d76c72..abdfb390 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -2,7 +2,7 @@ with bridges to [docutils](https://docutils.sourceforge.io/) and [Sphinx](https://github.com/sphinx-doc/sphinx). """ -__version__ = "0.19.2" +__version__ = "1.0.0" def setup(app):