diff --git a/CHANGELOG.md b/CHANGELOG.md
index d006c0a0c115aac323ec225dc6072a94a3a5c384..b89c2a1c2279ece970676f22350955852efe9ffe 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 bc7213a2228cf8f5a1a7ca5a08cc2ae28b7dd336..5776c1a0e876b0735453783c6ff04480db0b32f5 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):