diff --git a/CHANGELOG.md b/CHANGELOG.md index 836ba82406bcaadf62ba2fb8ac399a498dba573b..de28dd1ad462485fc6b4abccd74476f9048f57fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [1.0.0-beta.14](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.13...v1.0.0-beta.14) (2022-04-23) + +### Bug Fixes + +- **home:** remove hardcoded prefix in getAllPodcasts query + ([92d5cc5](https://code.castopod.org/adaures/castopod/commit/92d5cc50a3e533875cd894dccc417918102d4b7f)) +- overwrite common lang function to escape returned string + ([4c490c1](https://code.castopod.org/adaures/castopod/commit/4c490c15bb6642ad0b2aaddf08d8af25de99b4b0)), + closes [#196](https://code.castopod.org/adaures/castopod/issues/196) + [#198](https://code.castopod.org/adaures/castopod/issues/198) + +### Features + +- **i18n:** add Spanish to supported locales + ([e340b54](https://code.castopod.org/adaures/castopod/commit/e340b54a84d7dcdf9ba910fe7ff39c453fac0968)) + # [1.0.0-beta.13](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2022-04-14) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 78cfa71d152eaf84b51f3dd4f62bbdf609cc9745..e685c5d2edc9003312b5520e9f5b14491b5d8c80 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.13'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.14'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index dc8b14371fa3dbc4a628c7d266efd9d0b6eabaae..14cbca1c7b0a9eca6059d4b57a3c488e3aab967c 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-beta13", + "version": "1.0.0-beta14", "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 a938ff32c3dcb171b9a714e03deac23c5dcc95a4..7d104636d074626e4f568b60ed374f5267db1679 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.24", diff --git a/package.json b/package.json index abcbb57aac6d6115ca706bad8aef7790d425af4d..a09a4d2d4ae43de9f01e5f692d0eb01363feee89 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-beta.13", + "version": "1.0.0-beta.14", "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",