diff --git a/CHANGELOG.md b/CHANGELOG.md index 3535bbf4cf5f6d865100c466a75765e21b22fd58..06effa995b43b62a572a82c02525a510e69a35a5 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 aaf3d0a3ec65086c4d6589c44e9581c9a9db2fee..df3d7166cc94ce162b91fa825fc2319133e55988 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 48c29b36764a48198be24ec3b229bc43f21b67bf..2b97bfeef48474ed3598ddf8930e50eb83136179 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 171ea4682f6f8857b41508d5c4d0ff50b43ca201..f64b2e3121958344655e1101ff3d8fb4500d2d09 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",