From de8b1df948370c6a680a3262897c5ff47d0bd14b Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Fri, 24 Jun 2022 08:06:30 +0000 Subject: [PATCH] chore(release): 1.0.0-beta.16 [skip ci] # [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) --- CHANGELOG.md | 19 +++++++++++++++++++ app/Config/Constants.php | 2 +- composer.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2579791685..875adf2bb8 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 e88d041c54..523ee73597 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 87e79d5d5b..d3f788b732 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 5a1d4adabb..aec45e05aa 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 8187f709ba..03fea6fdec 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", -- GitLab