diff --git a/CHANGELOG.md b/CHANGELOG.md
index c9d4d08..ef961c4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,13 +2,22 @@
+
+## 0.12.1 — 2023-12-08
+
+### Added
+
+- Library API: the optional `bg_color` parameter to `PictureShow.save_pdf` and `pictures_to_pdf` to specify page background color (#29)
+- CLI: the `--bg-color` option to set page background color (#29)
+
+
## 0.12.0 — 2023-12-04
### Changed
- Library API: the `page_size`, `landscape`, `margin`, `layout`, `stretch_small`, `fill_area` and `force_overwrite`
- parameters to `PictureShow.save_pdf` are now keyword-only
+ parameters to `PictureShow.save_pdf` are now keyword-only (#28)
diff --git a/changelog.d/20231206_123338_michalportes1_bg_color.md b/changelog.d/20231206_123338_michalportes1_bg_color.md
deleted file mode 100644
index 462ab62..0000000
--- a/changelog.d/20231206_123338_michalportes1_bg_color.md
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-### Added
-
-- Library API: the optional `bg_color` parameter to `PictureShow.save_pdf` and `pictures_to_pdf` to specify page background color
-- CLI: the `--bg-color` option to set page background color
-
-
-
-
-
diff --git a/pyproject.toml b/pyproject.toml
index 3e9724b..5e083a7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pictureshow"
-version = "0.12.0"
+version = "0.12.1"
description = "Save pictures to PDF."
authors = ["Michal Porteš "]
license = "MIT"
diff --git a/src/pictureshow/__init__.py b/src/pictureshow/__init__.py
index 4fcd0bc..8075caf 100644
--- a/src/pictureshow/__init__.py
+++ b/src/pictureshow/__init__.py
@@ -1,5 +1,5 @@
from .core import PictureShow, pictures_to_pdf
-__version__ = '0.12.0'
+__version__ = '0.12.1'
__all__ = ['__version__', 'PictureShow', 'pictures_to_pdf']