diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7c35dde630805067bf5b805e17044c2602d19efc..e9465554b7bc2ccb058f66e8289b7e0f7236f65e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# [1.0.0-alpha.77](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.76...v1.0.0-alpha.77) (2021-11-23)
+
+### Bug Fixes
+
+- **cors:** add preflight option routes for episode, podcast and status objects
+  ([a281abf](https://code.podlibre.org/podlibre/castopod-host/commit/a281abfda475388a07943c169dab460cc2d4f944))
+- **podcast-import:** move guid attribute declaration for Episode entity to
+  include slug data
+  ([5d02ae3](https://code.podlibre.org/podlibre/castopod-host/commit/5d02ae39908a9d743627135b372bf981134c4328))
+
 # [1.0.0-alpha.76](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.75...v1.0.0-alpha.76) (2021-10-26)
 
 ### Bug Fixes
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index 6117fe5269c515b1238a5f72b3425e030b18954b..37816faa7821c1f775984fb937b920173646d41e 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.76');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.77');
 
 /*
  | --------------------------------------------------------------------
diff --git a/composer.json b/composer.json
index 545350372a824e8648c062352eda108f28f316a9..0b02cfd71777a03c5d426b3e71bf822ca6616928 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod-host",
-  "version": "1.0.0-alpha76",
+  "version": "1.0.0-alpha77",
   "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 032b11042bdd6c8abc906bfac51b53ff55a8401b..6ce8ced8889db2846471601d5dd4ab7e8d985434 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-alpha.76",
+  "version": "1.0.0-alpha.77",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "castopod-host",
-      "version": "1.0.0-alpha.76",
+      "version": "1.0.0-alpha.77",
       "license": "AGPL-3.0-or-later",
       "dependencies": {
         "@amcharts/amcharts4": "^4.10.17",
diff --git a/package.json b/package.json
index 5d37589d1135dd44ab9c436adc066eb0c67ecc95..6e10d52d83182b514cada6a6c88ced84f2529eea 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-alpha.76",
+  "version": "1.0.0-alpha.77",
   "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",