From 571cc05389eaff29efae60c667247e5d728f7654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Fri, 7 Feb 2025 09:45:40 -0800 Subject: [PATCH 1/2] DOC: adding changelog for v1.2.0 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33d800c2..4ff127dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # Change Log +## v1.2.0 - 2025-02-07 + +([full changelog](https://github.com/executablebooks/MyST-NB/compare/v1.1.2...v1.2.0)) + +### Enhancements made + +- ENH: Support translated notebooks by @OriolAbril in https://github.com/executablebooks/MyST-NB/pull/600 + +### Bugs Fixed + +- BUG: using rstrip to preserve indents by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/637 +- FIX: fix path suffix condition in core/read.py by @je-cook in https://github.com/executablebooks/MyST-NB/pull/641 + +### Maintenance and upkeep improvements + +- DOCS: adding changelog for 1.1.2 by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/638 +- MAINT: adding python 3.13 to CI and classifiers by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/635 +- CI: adding devdeps testing and cron and workflow dispatch by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/639 +- TST: fail on warnings by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/647 +- add `configuration` key to readthedocs.yml by @sneakers-the-rat in https://github.com/executablebooks/MyST-NB/pull/657 +- MAINT: fix CI in prep for release by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/659 + +### Other merged PRs + +- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/executablebooks/MyST-NB/pull/569 +- Revert "[pre-commit.ci] pre-commit autoupdate" by @agoose77 in https://github.com/executablebooks/MyST-NB/pull/642 + +### New Contributors +- @sneakers-the-rat made their first contribution in https://github.com/executablebooks/MyST-NB/pull/657 + +([GitHub contributors page for this release](https://github.com/executablebooks/MyST-NB/graphs/contributors?from=2024-09-24&to=2025-02-07&type=c)) + + ## v1.1.2 - 2024-09-24 ([full changelog](https://github.com/executablebooks/MyST-NB/compare/v1.1.1...c6a2d4b61205c2b20943391a656f01a4cc446076)) From 518663beb5dd7562645e34ce0e1bb5f571526865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Fri, 7 Feb 2025 09:46:27 -0800 Subject: [PATCH 2/2] REL: bumping version for v1.2.0 --- myst_nb/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myst_nb/__init__.py b/myst_nb/__init__.py index 7d1f190b..6e7be7cc 100644 --- a/myst_nb/__init__.py +++ b/myst_nb/__init__.py @@ -1,5 +1,5 @@ """A docutils/sphinx parser for Jupyter Notebooks.""" -__version__ = "1.1.2" +__version__ = "1.2.0" def setup(app):