diff --git a/CHANGELOG.md b/CHANGELOG.md index 612078fa..59fc304a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [1.0.2](https://code.castopod.org/adaures/castopod/compare/v1.0.1...v1.0.2) (2022-11-04) + +### Bug Fixes + +- **auth:** disallow registration by default + ([379b9be](https://code.castopod.org/adaures/castopod/commit/379b9be2b99574fe4af4009b01128dba2c75f037)) +- **contributors:** add prefix to podcast group to delete contributor + ([9f785db](https://code.castopod.org/adaures/castopod/commit/9f785db7ba674638a6f456aa3626f3f8100911f1)) +- extract podcast ids from user groups using a regex + ([e26215a](https://code.castopod.org/adaures/castopod/commit/e26215a11fc23aa0ad5ccff8ee97d6c6e8a09c1a)) +- **notifications:** add manage-notifications permission to podcast + ([ed7c247](https://code.castopod.org/adaures/castopod/commit/ed7c247bcbbb450e5ff96418930d3b37ce912cc4)) +- **platforms:** convert special characters to htmlentities to validate url + ([82310a2](https://code.castopod.org/adaures/castopod/commit/82310a2e0b426e84501090bdd9c0cf592d1c0d53)) + ## [1.0.1](https://code.castopod.org/adaures/castopod/compare/v1.0.0...v1.0.1) (2022-11-01) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 65637ce3..a8df469c 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.1'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.2'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index be977cae..684dc228 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.1", + "version": "1.0.2", "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 e390c981..e813af7e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.1", + "version": "1.0.2", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.29", diff --git a/package.json b/package.json index dfbb3f78..c6c5609a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.1", + "version": "1.0.2", "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",