diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4c8b0d1a6023725efd903631cb8d36aab91e59c..b2c4f4aef9969410c48ec105ff535e09cd997776 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+# [1.0.0-alpha.79](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.78...v1.0.0-alpha.79) (2021-12-20)
+
+### Bug Fixes
+
+- **import:** set episode and season numbers to null when not present in item
+  tag
+  ([3211398](https://code.podlibre.org/podlibre/castopod-host/commit/3211398c78b1b28b76a46427ee07874bbf84a85d))
+
 # [1.0.0-alpha.78](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.77...v1.0.0-alpha.78) (2021-12-15)
 
 ### Bug Fixes
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index be35f081647fc59b0d281a0022748f3486decb5a..73ab916d46135e766c2c63b1f5c40bcbb4c4bcdc 100644
--- a/app/Config/Constants.php
+++ b/app/Config/Constants.php
@@ -11,7 +11,7 @@ declare(strict_types=1);
  |
  | NOTE: this constant is updated upon release with Continuous Integration.
  */
-defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.78');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.79');
 
 /*
  | --------------------------------------------------------------------
diff --git a/composer.json b/composer.json
index 62865d88ec85921745a3f5bd66f520284aaca605..e943362254f0ef512ed14fc9ca23ae273daa93f2 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod-host",
-  "version": "1.0.0-alpha78",
+  "version": "1.0.0-alpha79",
   "type": "project",
   "description": "Castopod Host 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 e7c0d3326bc37a7009513941ee1f220e06d160ec..c99a65dc944ab152b936d1da7dbb4f6a63ee072a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-alpha.78",
+  "version": "1.0.0-alpha.79",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "castopod-host",
-      "version": "1.0.0-alpha.78",
+      "version": "1.0.0-alpha.79",
       "license": "AGPL-3.0-or-later",
       "dependencies": {
         "@amcharts/amcharts4": "^4.10.17",
diff --git a/package.json b/package.json
index 1756215becde33f3c4ff8856954bc62b4e6416c3..7bca08c8321ef93ada1bb8a822ec1b25df907b1c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-alpha.78",
+  "version": "1.0.0-alpha.79",
   "description": "Castopod Host 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",