diff --git a/CHANGELOG.md b/CHANGELOG.md index 30fcfa2620ef2078fa750fdb98f6ca67acf127ab..0b20086aaabb3a84bab5402701eade912b3d4dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,29 @@ # Change Log +## v0.12.2 - 2022-02-21 + +This is a minor release that bumps the versions of several dependencies in Jupyter Book (see below for details). + +([full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.12.1...419c863eb669efbbdaea82017902f592e7eaa8b1)) + +### Enhancements made + +- Allow recursively updating the sphinx configuration instead of totally over-writing it, see [the sphinx configuration docs](docs/advanced/sphinx.md) for details [#1599](https://github.com/executablebooks/jupyter-book/pull/1599) ([@kmpaul](https://github.com/kmpaul)) + +### Updated dependencies + +- sphinxcontrib-bibtex `v0.4.*` [#1513](https://github.com/executablebooks/jupyter-book/pull/1513) ([@bryanwweber](https://github.com/bryanwweber)) +- sphinx-thebe `v0.1.*` [#1634](https://github.com/executablebooks/jupyter-book/pull/1634) ([@choldgraf](https://github.com/choldgraf)) +- click `v8.*` [#1623](https://github.com/executablebooks/jupyter-book/pull/1623) ([@lukasbindreiter](https://github.com/lukasbindreiter)) +- Remove Python 3.6 and add Python 3.9 [#1626](https://github.com/executablebooks/jupyter-book/pull/1626) ([@choldgraf](https://github.com/choldgraf)) + + ## v0.12.1 This release provides bug fixes and updates when building PDF via LaTeX including improved styling for code output cells. It also includes infrastructure for using Jupyter Book with ReadTheDocs. -## New +### New - ✨ NEW: Allow running on ReadTheDocs [PR #1422](https://github.com/executablebooks/jupyter-book/pull/1422) - ✨ NEW: Upgrade to sphinx-jupyterbook-latex~=0.4.6 [PR #1538](https://github.com/executablebooks/jupyter-book/pull/1538) diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py index b88049c0e5f95aed8d2dc9d9019dae57d8cf0641..a8f3faeb4ee4a88be06502c50126095fe9020209 100644 --- a/jupyter_book/__init__.py +++ b/jupyter_book/__init__.py @@ -1,7 +1,7 @@ """Build a book with Jupyter Notebooks and Sphinx.""" from pathlib import Path -__version__ = "0.12.1" +__version__ = "0.12.2" def add_static_files(app, config):