mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-23 16:05:34 +00:00
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](ea20206ee6
)) ### Features * add update rss feed feature for podcasts to import their latest episodes ([5eb9dc1](5eb9dc168e
)), closes [#183](https://code.castopod.org/adaures/castopod/issues/183) * **admin:** add search form in podcast episodes list ([6be5d12](6be5d12877
)), closes [#26](https://code.castopod.org/adaures/castopod/issues/26) * **api:** add rest api with podcasts read endpoints ([e64001d](e64001d006
)), closes [#210](https://code.castopod.org/adaures/castopod/issues/210)
This commit is contained in:
parent
a37e407483
commit
de8b1df948
19
CHANGELOG.md
19
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)
|
# [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
|
### Bug Fixes
|
||||||
|
@ -11,7 +11,7 @@ declare(strict_types=1);
|
|||||||
|
|
|
|
||||||
| NOTE: this constant is updated upon release with Continuous Integration.
|
| 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');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
| --------------------------------------------------------------------
|
| --------------------------------------------------------------------
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "podlibre/castopod-host",
|
"name": "podlibre/castopod-host",
|
||||||
"version": "1.0.0-beta15",
|
"version": "1.0.0-beta16",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
"description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
||||||
"homepage": "https://castopod.org",
|
"homepage": "https://castopod.org",
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "castopod-host",
|
"name": "castopod-host",
|
||||||
"version": "1.0.0-beta.15",
|
"version": "1.0.0-beta.16",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "castopod-host",
|
"name": "castopod-host",
|
||||||
"version": "1.0.0-beta.15",
|
"version": "1.0.0-beta.16",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@amcharts/amcharts4": "^4.10.24",
|
"@amcharts/amcharts4": "^4.10.24",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "castopod-host",
|
"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.",
|
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user