diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 364873c..d706bc3 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,7 +6,7 @@ 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.2.0] - unreleased
+[1.2.0] - 2024-10-15
--------------------
Added
diff --git a/README.rst b/README.rst
index b8bb2f5..8b55cc6 100644
--- a/README.rst
+++ b/README.rst
@@ -264,7 +264,7 @@ Example docker-compose file:
# source: https://github.com/jamborjan/dmarc-metrics-exporter/pkgs/container/dmarc-metrics-exporter
container_name: dmarc-metrics-exporter
hostname: dmarc-metrics-exporter
- image: jgosmann/dmarc-metrics-exporter:1.1.1
+ image: jgosmann/dmarc-metrics-exporter:1.2.0
restart: unless-stopped
user: 1000:1000 #PUID=1000:PGID=1000
expose:
diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py
index a82b376..c68196d 100644
--- a/dmarc_metrics_exporter/__init__.py
+++ b/dmarc_metrics_exporter/__init__.py
@@ -1 +1 @@
-__version__ = "1.1.1"
+__version__ = "1.2.0"
diff --git a/pyproject.toml b/pyproject.toml
index fdf7d24..0d86cfb 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.1" # Update also in __init__.py and Docker compose example in readme!
+version = "1.2.0" # Update also in __init__.py and Docker compose example in readme!
[tool.poetry.scripts]
dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"