From 60d79c79e1bacda19c4f3e6764b8c879d963480d Mon Sep 17 00:00:00 2001 From: Chris Holdgraf <choldgraf@berkeley.edu> Date: Sun, 3 Apr 2022 20:24:36 -0700 Subject: [PATCH] RELEASE: v0.12.3 (#1682) --- .pre-commit-config.yaml | 2 +- CHANGELOG.md | 11 +++++++++++ jupyter_book/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5611c6f4..e9010f3d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -42,7 +42,7 @@ repos: - id: isort - repo: https://github.com/psf/black - rev: 22.1.0 + rev: 22.3.0 hooks: - id: black diff --git a/CHANGELOG.md b/CHANGELOG.md index 79df7572..d24ed0c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## v0.12.3 - 2022-03-28 + +([full changelog](https://github.com/executablebooks/jupyter-book/compare/v0.12.2...5e12cb324afca1192f2354689d9d5755329e1c9d)) + +This is a minor release, primarily to fix a bug where incorrect Jinja version pinning leads to broken builds. It also updates our build system to use `flit` and follow the `pyproject.toml` standard. + +Here are the main merged PRs: + +- PIN: Jinja < 3.1 [#1678](https://github.com/executablebooks/jupyter-book/pull/1678) ([@choldgraf](https://github.com/choldgraf)) +- 🔧 MAINTAIN: Move to flit for PEP 621 package builds [#1645](https://github.com/executablebooks/jupyter-book/pull/1645) ([@choldgraf](https://github.com/choldgraf)) + ## 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). diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py index a8f3faeb..10e05a7e 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.2" +__version__ = "0.12.3" def add_static_files(app, config): -- GitLab