diff --git a/CHANGELOG.md b/CHANGELOG.md index f85a35877a902370500ec976d0832f0419a62f26..9bf0adeaf8bc69f7902255e0c49f80b8a168a6ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.0.0-alpha.62](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.61...v1.0.0-alpha.62) (2021-07-02) + +### Bug Fixes + +- **episode:** replace guid's empty string value to null + ([441052a](https://code.podlibre.org/podlibre/castopod-host/commit/441052af8d99e6e317edefd1e58ad71799357088)) + # [1.0.0-alpha.61](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-alpha.60...v1.0.0-alpha.61) (2021-06-23) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 6b0893b03183927b8ffe5617d123cafc719787e9..7ef632cf8e8cd19ea5ccb8a3a7c79ccead83ecd9 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.61'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.62'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index f949ba3bb8462e14e2f5ce67038e66a86e4739ae..96350b6843e40c76b23673b3dd6353959c820e7e 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-alpha61", + "version": "1.0.0-alpha62", "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 59ce62500d55d8ab2c35235390d19ea494a77496..3220d9dde9a7c245b453c3ca5e59b7628683bc6c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "castopod-host", - "version": "1.0.0-alpha.61", + "version": "1.0.0-alpha.62", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "1.0.0-alpha.61", + "version": "1.0.0-alpha.62", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.17", diff --git a/package.json b/package.json index a65f8ab9f13d09e980421ef8de6c26152267fb8e..69be8d8578bac58b77d800b82d99c9f67c098b53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-alpha.61", + "version": "1.0.0-alpha.62", "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",