diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ff143a2f805cdd1c9484d2630fcd04e5f517e7..4e87e66995ec727668a6b775af2c23cb5d40dd7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.13.0](https://code.castopod.org/adaures/castopod/compare/v1.12.11...v1.13.0) (2024-10-25) + +### Features + +- **api:** add Episode create and publish endpoints + ([75cf78e](https://code.castopod.org/adaures/castopod/commit/75cf78e972c52528dc38be050dcb1eb1f8e626fa)) +- **rss:** add option for 301 redirect to new feed url + ([3a7d26f](https://code.castopod.org/adaures/castopod/commit/3a7d26fdf9bfeffb9247f8efe06d9040ae2fe5ff)) + ## [1.12.11](https://code.castopod.org/adaures/castopod/compare/v1.12.10...v1.12.11) (2024-10-16) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index f1d27aee69e5978b345bfda98f736c04aa74d688..baa9d808b586279b9313a78b5b96b77d4592855c 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.11'); +defined('CP_VERSION') || define('CP_VERSION', '1.13.0'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 4313bdd42db34e058a95197a42ca63781d353a8e..9483e7caeaf79e8736e2224ae7ae989ae12888aa 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.12.11", + "version": "1.13.0", "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 2b6cc62db481c41c3339ae7e088007c61f7db2db..7539ccea0f82e51aff5af5b94ce5132f8aefc27b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.12.11", + "version": "1.13.0", "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",