diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c8ffa29..46e48310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [1.4.2](https://code.castopod.org/adaures/castopod/compare/v1.4.1...v1.4.2) (2023-06-27) + +### Bug Fixes + +- **fediverse:** check that actor's images mimetype is present or guess it + otherwise + ([06c4f15](https://code.castopod.org/adaures/castopod/commit/06c4f15477a568407a3d3c1e5e489bc0241bc1e9)), + closes [#348](https://code.castopod.org/adaures/castopod/issues/348) +- **podcast-import:** show cancel or retry action depending on task status + ([e42258d](https://code.castopod.org/adaures/castopod/commit/e42258de1f331aac0cbb380b80cd8fc7f9d7dc18)) + ## [1.4.1](https://code.castopod.org/adaures/castopod/compare/v1.4.0...v1.4.1) (2023-06-22) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 061ac9bb..6756bff6 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.4.1'); +defined('CP_VERSION') || define('CP_VERSION', '1.4.2'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 765cebdd..ad59048d 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.4.1", + "version": "1.4.2", "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.json b/package.json index b7a71fe5..e5547f32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.4.1", + "version": "1.4.2", "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",