diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c8b0d1..b2c4f4ae 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 be35f081..73ab916d 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 62865d88..e9433622 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 e7c0d332..c99a65dc 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 1756215b..7bca08c8 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",