diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0cebdc4038aa425c007bb7bd5a74ca869ae0d97d..d91d2eac3ebeab3f08f18e3df30b64c9899cda37 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [1.0.0-alpha.50](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2021-04-14)
+
+
+### Bug Fixes
+
+* **persons:** prevent overflow of persons list by adding horizontal scroll ([9e8995d](https://code.podlibre.org/podlibre/castopod/commit/9e8995dc6e039032cc65f87895cf770f99e8b244))
+
 # [1.0.0-alpha.49](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2021-04-12)
 
 
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index a2c0a75f6093fbe1c7b5826f5a2e9b7b7d5809d9..33fac2edee394448e06ce21ef4028b07cf126025 100644
--- a/app/Config/Constants.php
+++ b/app/Config/Constants.php
@@ -9,7 +9,7 @@
  |
  | NOTE: this constant is updated upon release with Continuous Integration.
  */
-defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.49');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.50');
 
 /*
  | --------------------------------------------------------------------
diff --git a/composer.json b/composer.json
index 9941ea4b49a4e0731d73ade9101ccccc7713514b..0b405aa61ed28d2905118a20fff48264b8a4033a 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod",
-  "version": "1.0.0-alpha49",
+  "version": "1.0.0-alpha50",
   "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 7a16cbdf61da76678183e4860296339f5f075355..312dd6c64c61e0acc13fe2b9ee0d92b0083285cf 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod",
-  "version": "1.0.0-alpha.49",
+  "version": "1.0.0-alpha.50",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/package.json b/package.json
index 3d9cc3ac2d65abfd73912376def1ab15ed30dc32..b23d70fc0364dfb2a409c9d18131d3eb7fc59c56 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod",
-  "version": "1.0.0-alpha.49",
+  "version": "1.0.0-alpha.50",
   "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",