diff --git a/CHANGELOG.md b/CHANGELOG.md index 06effa99..18d3fe84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.3.3](https://code.castopod.org/adaures/castopod/compare/v1.3.2...v1.3.3) (2023-04-17) + +### Bug Fixes + +- unnescape podcast title special characters in "find us on" section + ([f727276](https://code.castopod.org/adaures/castopod/commit/f727276f820a8ef2c47947f40a37a4a157b509ef)), + closes [#323](https://code.castopod.org/adaures/castopod/issues/323) +- **websub:** add missing misc helper import + ([855aacc](https://code.castopod.org/adaures/castopod/commit/855aacce0bf3841a876cd593e668e116149080aa)) + ## [1.3.2](https://code.castopod.org/adaures/castopod/compare/v1.3.1...v1.3.2) (2023-04-14) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index df3d7166..746dc241 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.2'); +defined('CP_VERSION') || define('CP_VERSION', '1.3.3'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 2b97bfee..2a261648 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.3.2", + "version": "1.3.3", "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 f64b2e31..02507b39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.3.2", + "version": "1.3.3", "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",