diff --git a/CHANGELOG.md b/CHANGELOG.md index bc1c12de..b564ddb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [1.12.7](https://code.castopod.org/adaures/castopod/compare/v1.12.6...v1.12.7) (2024-08-14) + +### Bug Fixes + +- **episode:** do not change slug when editing episode title + ([89bf73b](https://code.castopod.org/adaures/castopod/commit/89bf73b869c28c2fcffa3dcbc3660fac3b6bf988)), + closes [#513](https://code.castopod.org/adaures/castopod/issues/513) +- **preview:** delete episode preview cache after editing episode + ([6a2cdd0](https://code.castopod.org/adaures/castopod/commit/6a2cdd066ee13efc6489901bbdcbcc5fea35cd71)), + closes [#514](https://code.castopod.org/adaures/castopod/issues/514) + ## [1.12.6](https://code.castopod.org/adaures/castopod/compare/v1.12.5...v1.12.6) (2024-08-09) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 857ead45..630c72e4 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.12.6'); +defined('CP_VERSION') || define('CP_VERSION', '1.12.7'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 63c00278..760072b5 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.12.6", + "version": "1.12.7", "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 e70d992c..b584945e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.12.6", + "version": "1.12.7", "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",