diff --git a/CHANGELOG.md b/CHANGELOG.md index bc1c12deac614f42856033c50cc285874fa48562..b564ddb1472ad612c83c8d349a0d3e329688e03f 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 857ead453cc4f915c9a9235c6c1aeef0dea3b20d..630c72e480b5239510434c1adc404c67351f6b15 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 63c00278e46631e6ea2d06c1f5ec90b5e7ec62bf..760072b5a75d361490c6b9a4f9a36d4da02225a9 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 e70d992c6a664b1f7febf8c6b3d8aee35d750dab..b584945e305fb0771fe4fb5661edcf4a82b31259 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",