diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4963f7c7..abd42db2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12.0)
 
 set(LIBCEC_VERSION_MAJOR 6)
 set(LIBCEC_VERSION_MINOR 0)
-set(LIBCEC_VERSION_PATCH 1)
+set(LIBCEC_VERSION_PATCH 2)
 
 # cec-client
 add_subdirectory(src/cec-client)
diff --git a/debian/changelog.in b/debian/changelog.in
index 3d6d0cd8..842f7533 100644
--- a/debian/changelog.in
+++ b/debian/changelog.in
@@ -1,3 +1,14 @@
+libcec (6.0.2.1~#DIST#) #DIST#; urgency=medium
+
+  * added:
+    * example systemd units for common use cases (#506)
+  * fixed:
+    * debian: allows clean upgrades of debian libcec-dev (#521)
+    * detect Python pre-releases correctly (#515)
+    * docs: add missing git dependency to raspberry pi installation (#519)
+
+ -- Pulse-Eight Packaging <packaging@pulse-eight.com>  Mon, 13 Jul 2020 11:17:00 +0100
+
 libcec (6.0.1.1~#DIST#) #DIST#; urgency=medium
 
   * fixed:
diff --git a/docs/README.linux.md b/docs/README.linux.md
index 39735c18..8d40657b 100644
--- a/docs/README.linux.md
+++ b/docs/README.linux.md
@@ -57,5 +57,9 @@ Pass the argument `-DHAVE_LINUX_API=1` to the cmake command in the compilation i
 cmake -DHAVE_LINUX_API=1 ..
 ```
 
+### Systemd
+Example systemd units for common use cases can be found in the [systemd folder](../systemd/).
+
+
 ### Debian / Ubuntu .deb packaging
-See [docs/README.debian.md](README.debian.md).
\ No newline at end of file
+See [docs/README.debian.md](README.debian.md).