diff --git a/CHANGELOG.md b/CHANGELOG.md index 35e7878d..8b6a19b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# [1.0.0-beta.19](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.18...v1.0.0-beta.19) (2022-07-21) + +### Bug Fixes + +- **episode-unpublish:** set consistent posts_counts' increments/decrements for + actors and episodes + ([8acdafd](https://code.castopod.org/adaures/castopod/commit/8acdafd26044e50a4d6ee451bf24ad66003c5bb3)), + closes [#233](https://code.castopod.org/adaures/castopod/issues/233) +- **get_browser_language:** return defaultLocale if browser doesn't send user + preferred language + ([9cc2996](https://code.castopod.org/adaures/castopod/commit/9cc299626181048b85b629bbe7f5806a1f5d21ff)) + +### Features + +- **episode-unpublish:** remove episode comments upon unpublish + ([78acd7f](https://code.castopod.org/adaures/castopod/commit/78acd7f5c057c82507d801c424040296dbaba586)) + # [1.0.0-beta.18](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2022-07-07) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index d3dacf7d..47a12706 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.18'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.19'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 8679caf0..17995352 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-beta18", + "version": "1.0.0-beta19", "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 35eb0cd3..1f68f5ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.0-beta.18", + "version": "1.0.0-beta.19", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.0-beta.18", + "version": "1.0.0-beta.19", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.25", diff --git a/package.json b/package.json index cd92d417..8552b1bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-beta.18", + "version": "1.0.0-beta.19", "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",