diff --git a/CHANGELOG.md b/CHANGELOG.md index c9255d03..0b07438f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [1.0.0-beta.12](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2022-04-05) + +### Bug Fixes + +- update form_textarea to prevent escaping value + ([78548b5](https://code.castopod.org/adaures/castopod/commit/78548b5cd75ea7d6688d1945ff5449ea4f6bec68)) + +### Features + +- **i18n:** add support for German and Brazilian Portuguese languages + ([19da003](https://code.castopod.org/adaures/castopod/commit/19da003fd396bff20b89ad330b787e9cdbe8d919)) + # [1.0.0-beta.11](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2022-04-01) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index f26fd363..c9f5e8ac 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.11'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.12'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index a240dc23..a3872b95 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-beta11", + "version": "1.0.0-beta12", "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 f5dbaae1..9cce3bf0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.0-beta.11", + "version": "1.0.0-beta.12", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.0-beta.11", + "version": "1.0.0-beta.12", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.24", diff --git a/package.json b/package.json index 4966d45e..06ae5ed9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-beta.11", + "version": "1.0.0-beta.12", "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",