diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0858176..8ee8d78 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,17 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog `_,
and this project adheres to `Semantic Versioning `_.
+[1.1.1] - 2024-10-10
+--------------------
+
+Fixed
+^^^^^
+
+* Fix misspelled metric name (use ``dmarc_invalid_reports_total`` instead of
+ ``dmaric_invalid_reports_total``).
+ (`#50 `_)
+
+
[1.1.0] - 2024-08-20
--------------------
diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py
index 6849410..a82b376 100644
--- a/dmarc_metrics_exporter/__init__.py
+++ b/dmarc_metrics_exporter/__init__.py
@@ -1 +1 @@
-__version__ = "1.1.0"
+__version__ = "1.1.1"
diff --git a/pyproject.toml b/pyproject.toml
index 14cd0b3..7cedbb7 100755
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -20,7 +20,7 @@ license = "MIT"
name = "dmarc-metrics-exporter"
readme = "README.rst"
repository = "https://github.com/jgosmann/dmarc-metrics-exporter/"
-version = "1.1.0" # Update also in __init__.py!
+version = "1.1.1" # Update also in __init__.py!
[tool.poetry.scripts]
dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"