diff --git a/CHANGELOG.md b/CHANGELOG.md
index b5826483a8d78246600476685684c6559a181b84..fdfefdccbad9c45716b7b1cf1dca98e1edd51cdc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# [1.0.0-alpha.20](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-11-24)
+
+
+### Bug Fixes
+
+* **import:** use <image><url> tag when no <itunes:image> is present ([20e607a](https://code.podlibre.org/podlibre/castopod/commit/20e607afb755bc75056041738fa7cbf6723d754c))
+
+
+### Features
+
+* **rss:** add podcast-namespace tags for platforms + previousUrl tag ([dbba8dc](https://code.podlibre.org/podlibre/castopod/commit/dbba8dc58133967c778514268cbfed8098ed1dbc)), closes [#73](https://code.podlibre.org/podlibre/castopod/issues/73) [#75](https://code.podlibre.org/podlibre/castopod/issues/75) [#76](https://code.podlibre.org/podlibre/castopod/issues/76) [#80](https://code.podlibre.org/podlibre/castopod/issues/80)
+
 # [1.0.0-alpha.19](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-11-13)
 
 
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index 4224a4ce3c93a269c2fc624eb87ddeae4da6593a..d87a13a42485da24633b018caefc3cdbbce1ce60 100644
--- a/app/Config/Constants.php
+++ b/app/Config/Constants.php
@@ -7,7 +7,7 @@
 //
 // NOTE: this constant is updated upon release with Continuous Integration.
 //
-defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.19');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.20');
 
 //--------------------------------------------------------------------
 // App Namespace
diff --git a/composer.json b/composer.json
index 39a277c0712d4609fa07e1a04114af1e40ccdcd1..8c6b47dd72aaae224b8afeab600708db8ebe79f4 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod",
-  "version": "1.0.0-alpha19",
+  "version": "1.0.0-alpha20",
   "type": "project",
   "description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
   "homepage": "https://castopod.org",
diff --git a/package-lock.json b/package-lock.json
index fb16c1549ec5e9745f2e9c3064cfc1e6cf90d531..88c6a41ffb6943e8425376e39177d2cc5c6a2e3f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod",
-  "version": "1.0.0-alpha.19",
+  "version": "1.0.0-alpha.20",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/package.json b/package.json
index cfaafab857f46be0b6ce90f5e6b74b7b69ac257a..fe594abb275dc2a6b3f4ebe2e4db91252cd33136 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod",
-  "version": "1.0.0-alpha.19",
+  "version": "1.0.0-alpha.20",
   "description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
   "private": true,
   "license": "AGPL-3.0-or-later",