From b642a80d112132beb5b50fec67793a56816cf2c5 Mon Sep 17 00:00:00 2001
From: mmcky <mmcky@users.noreply.github.com>
Date: Fri, 19 Nov 2021 11:18:36 +1100
Subject: [PATCH] RELEASE: Setup and Changes for v0.12.1 (#1542)

---
 CHANGELOG.md             | 10 ++++++++++
 jupyter_book/__init__.py |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d66f0f9b..30fcfa26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
 # Change Log
 
+## 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: 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)
+
 ## v0.12.0
 
 ### New
diff --git a/jupyter_book/__init__.py b/jupyter_book/__init__.py
index cb59b85c..b88049c0 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.0"
+__version__ = "0.12.1"
 
 
 def add_static_files(app, config):
-- 
GitLab