diff --git a/CHANGELOG.md b/CHANGELOG.md index 3535bbf4..06effa99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.3.2](https://code.castopod.org/adaures/castopod/compare/v1.3.1...v1.3.2) (2023-04-14) + +### Bug Fixes + +- remove path key when getting default avatar path + ([c5a1359](https://code.castopod.org/adaures/castopod/commit/c5a1359218d61c0f78006f2bd5785e317f32bade)) +- **s3:** serve files using media base url to allow for CDN setup + ([502f53c](https://code.castopod.org/adaures/castopod/commit/502f53c9701da3b8da2caef1eb54df25b7d2d86a)) + ## [1.3.1](https://code.castopod.org/adaures/castopod/compare/v1.3.0...v1.3.1) (2023-04-13) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index aaf3d0a3..df3d7166 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.3.1'); +defined('CP_VERSION') || define('CP_VERSION', '1.3.2'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 48c29b36..2b97bfee 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.3.1", + "version": "1.3.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 171ea468..f64b2e31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.3.1", + "version": "1.3.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",