diff --git a/CHANGELOG.md b/CHANGELOG.md index 25797916856e900fd5883f6e5ebadbaedc3efed1..875adf2bb821bdf887c50dd9c6f29952ab66f5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [1.0.0-beta.16](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-06-24) + +### Bug Fixes + +- change image size requirement hints + ([ea20206](https://code.castopod.org/adaures/castopod/commit/ea20206ee674eb54dd3ea188d2a2e2d41425df65)) + +### Features + +- add update rss feed feature for podcasts to import their latest episodes + ([5eb9dc1](https://code.castopod.org/adaures/castopod/commit/5eb9dc168eb9af04767829b76242c9120f55d46d)), + closes [#183](https://code.castopod.org/adaures/castopod/issues/183) +- **admin:** add search form in podcast episodes list + ([6be5d12](https://code.castopod.org/adaures/castopod/commit/6be5d12877342a7c56e25ea8dd15a975c6ce45ac)), + closes [#26](https://code.castopod.org/adaures/castopod/issues/26) +- **api:** add rest api with podcasts read endpoints + ([e64001d](https://code.castopod.org/adaures/castopod/commit/e64001d00604bcf587ec5e9a631282f212df450d)), + closes [#210](https://code.castopod.org/adaures/castopod/issues/210) + # [1.0.0-beta.15](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-06-14) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index e88d041c543fd8d344c5f4e5512fb1de91fe437d..523ee735975b1a6066067b00fae15bf6ee31398e 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.0.0-beta.15'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.16'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 87e79d5d5b448528e6011788abbb9c9031c30431..d3f788b7328bbba4a347c344bb1f39b198772aed 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-beta15", + "version": "1.0.0-beta16", "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-lock.json b/package-lock.json index 5a1d4adabb9b90126a68582343071da055b89813..aec45e05aa2f7cd59720da1b02a97f15e762b18e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.24", diff --git a/package.json b/package.json index 8187f709baeb8fca78fc1ad43826dc1702a30b06..03fea6fdecc430e4215c8fe8a7de55c7d126cac1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-beta.15", + "version": "1.0.0-beta.16", "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",