Skip to content

Commit 27c82f3

Browse files
authored
Preparing for v1.2.0 (#663)
* DOC: adding changelog for v1.2.0 * REL: bumping version for v1.2.0
1 parent 9591314 commit 27c82f3

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Change Log
22

3+
## v1.2.0 - 2025-02-07
4+
5+
([full changelog](https://github.com/executablebooks/MyST-NB/compare/v1.1.2...v1.2.0))
6+
7+
### Enhancements made
8+
9+
- ENH: Support translated notebooks by @OriolAbril in https://github.com/executablebooks/MyST-NB/pull/600
10+
11+
### Bugs Fixed
12+
13+
- BUG: using rstrip to preserve indents by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/637
14+
- FIX: fix path suffix condition in core/read.py by @je-cook in https://github.com/executablebooks/MyST-NB/pull/641
15+
16+
### Maintenance and upkeep improvements
17+
18+
- DOCS: adding changelog for 1.1.2 by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/638
19+
- MAINT: adding python 3.13 to CI and classifiers by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/635
20+
- CI: adding devdeps testing and cron and workflow dispatch by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/639
21+
- TST: fail on warnings by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/647
22+
- add `configuration` key to readthedocs.yml by @sneakers-the-rat in https://github.com/executablebooks/MyST-NB/pull/657
23+
- MAINT: fix CI in prep for release by @bsipocz in https://github.com/executablebooks/MyST-NB/pull/659
24+
25+
### Other merged PRs
26+
27+
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/executablebooks/MyST-NB/pull/569
28+
- Revert "[pre-commit.ci] pre-commit autoupdate" by @agoose77 in https://github.com/executablebooks/MyST-NB/pull/642
29+
30+
### New Contributors
31+
- @sneakers-the-rat made their first contribution in https://github.com/executablebooks/MyST-NB/pull/657
32+
33+
([GitHub contributors page for this release](https://github.com/executablebooks/MyST-NB/graphs/contributors?from=2024-09-24&to=2025-02-07&type=c))
34+
35+
336
## v1.1.2 - 2024-09-24
437

538
([full changelog](https://github.com/executablebooks/MyST-NB/compare/v1.1.1...c6a2d4b61205c2b20943391a656f01a4cc446076))

myst_nb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""A docutils/sphinx parser for Jupyter Notebooks."""
2-
__version__ = "1.1.2"
2+
__version__ = "1.2.0"
33

44

55
def setup(app):

0 commit comments

Comments
 (0)