diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cebdc40..d91d2eac 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 a2c0a75f..33fac2ed 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 9941ea4b..0b405aa6 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 7a16cbdf..312dd6c6 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 3d9cc3ac..b23d70fc 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",