From 28f952dca76743b2f16533573426c24fcf78a1c4 Mon Sep 17 00:00:00 2001
From: mmcky <mmcky@users.noreply.github.com>
Date: Thu, 15 Jul 2021 10:59:18 +1000
Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20Preparation=20for=20j?=
 =?UTF-8?q?upyter-book=3D=3D0.11.2=20(#1391)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* RELEASE: Preparation for jupyter-book=0.11.2

* update CHANGELOG for upgrade to sphinx-jupyterbook-latex

* Update CHANGELOG.md

Co-authored-by: Chris Holdgraf <choldgraf@berkeley.edu>

Co-authored-by: Chris Holdgraf <choldgraf@berkeley.edu>
---
 CHANGELOG.md             | 15 +++++++++++++++
 jupyter_book/__init__.py |  2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d006c0a0..b89c2a1c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
 # Change Log
 
+## v0.11.2
+
+This release introduces [sphinx-multitoc-numbering](https://github.com/executablebooks/sphinx-multitoc-numbering) for consistent numbering across a `part/chapter` book structure. It also includes improvements to `pdflatex` output, updates to the documentation and various maintenance tasks.
+
+### New
+
+- [html] Add `sphinx-multitoc-numbering` package to provide consistent numbering when organising a book by `parts` and `chapters`.
+  This is enabled by **default*** but can be switched off in [the _config.yml file](https://jupyterbook.org/structure/configure.html?highlight=sphinx%20multitoc%20numbering#number-your-chapters-and-sections). [[PR #1326](https://github.com/executablebooks/jupyter-book/pull/1326)]
+
+### Upgrade
+
+- [pdflatex] UPGRADE: Upgrade to `sphinx-jupyterbook-latex==0.4.2` which enables support for the `tableofcontents` directives and improvements
+  to `pdf` compilation via `LaTeX`.
+
+
 ## v0.11.1
 
 This release included two minor patches brought in via updates to `sphinx-external-toc` and `jupyterbook-latex`.
diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py
index bc7213a2..5776c1a0 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.11.1"
+__version__ = "0.11.2"
 
 
 def add_static_files(app, config):
-- 
GitLab