diff --git a/CHANGELOG.md b/CHANGELOG.md index 48beacf..d9b34a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ +## 0.18.0 + +([Full Changelog](https://github.com/jupyterlite/jupyterlite-sphinx/compare/v0.17.1...a908c141dbbecfacdacf4a3382b526c30eda24d7)) + +### Enhancements made + +- Allow enabling/disabling REPL code execution in the `Replite` directive [#245](https://github.com/jupyterlite/jupyterlite-sphinx/pull/245) ([@agriyakhetarpal](https://github.com/agriyakhetarpal)) + +### Bugs fixed + +- Correctly handle case where "See Also" section follows "Examples" in `global_enable_try_examples` [#251](https://github.com/jupyterlite/jupyterlite-sphinx/pull/251) ([@agriyakhetarpal](https://github.com/agriyakhetarpal)) + +### Maintenance and upkeep improvements + +- Drop Python 3.8 [#239](https://github.com/jupyterlite/jupyterlite-sphinx/pull/239) ([@jtpio](https://github.com/jtpio)) +- Relax `jupyterlite-core` and `jupyterlite-xeus` dependencies [#238](https://github.com/jupyterlite/jupyterlite-sphinx/pull/238) ([@jtpio](https://github.com/jtpio)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlite/jupyterlite-sphinx/graphs/contributors?from=2024-12-22&to=2025-01-13&type=c)) + +[@agriyakhetarpal](https://github.com/search?q=repo%3Ajupyterlite%2Fjupyterlite-sphinx+involves%3Aagriyakhetarpal+updated%3A2024-12-22..2025-01-13&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlite%2Fjupyterlite-sphinx+involves%3Ajtpio+updated%3A2024-12-22..2025-01-13&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyterlite%2Fjupyterlite-sphinx+involves%3Apre-commit-ci+updated%3A2024-12-22..2025-01-13&type=Issues) | [@steppi](https://github.com/search?q=repo%3Ajupyterlite%2Fjupyterlite-sphinx+involves%3Asteppi+updated%3A2024-12-22..2025-01-13&type=Issues) + + + ## 0.17.1 ([Full Changelog](https://github.com/jupyterlite/jupyterlite-sphinx/compare/v0.17.0...f51bdc6e0971c45862af66eb68e10bfe6935f538)) @@ -16,8 +41,6 @@ [@agriyakhetarpal](https://github.com/search?q=repo%3Ajupyterlite%2Fjupyterlite-sphinx+involves%3Aagriyakhetarpal+updated%3A2024-12-22..2024-12-22&type=Issues) - - ## 0.17.0 ([Full Changelog](https://github.com/jupyterlite/jupyterlite-sphinx/compare/v0.16.5...548b2151dfd593ae6633348e4df10348191495a9)) diff --git a/jupyterlite_sphinx/__init__.py b/jupyterlite_sphinx/__init__.py index 33fea16..a362d59 100644 --- a/jupyterlite_sphinx/__init__.py +++ b/jupyterlite_sphinx/__init__.py @@ -1,3 +1,3 @@ from .jupyterlite_sphinx import setup ## noqa -__version__ = "0.17.1" +__version__ = "0.18.0"