diff --git a/CHANGELOG.md b/CHANGELOG.md index 04adf06e6a49e8832e83f98cc611a1451709bd45..1d5e5d2c8390460339228b97b99d0a67490105a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [1.0.0-alpha.29](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2020-12-10) + + +### Bug Fixes + +* **episodes:** add publication status + set publication date to null when none has been set ([d882981](https://code.podlibre.org/podlibre/castopod/commit/d882981b3a86c81921ce6b07d4cf61fc13983689)), closes [#70](https://code.podlibre.org/podlibre/castopod/issues/70) + + +### Reverts + +* **soundbites:** remove soundbite table from episode's public page ([5dc0f19](https://code.podlibre.org/podlibre/castopod/commit/5dc0f19656de0d764f627d6ae78a9e306c901835)) + # [1.0.0-alpha.28](https://code.podlibre.org/podlibre/castopod/compare/v1.0.0-alpha.27...v1.0.0-alpha.28) (2020-12-07) diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 1ef84dd5efabb7af661f4b427253c50953516ac5..44cad277ed86b90d5bc46989164644ca6db0c510 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -7,7 +7,7 @@ // // NOTE: this constant is updated upon release with Continuous Integration. // -defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.28'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-alpha.29'); //-------------------------------------------------------------------- // App Namespace diff --git a/composer.json b/composer.json index 93e395adc0f8300f4d9e22ae15a022816ac066c9..4b7237489fb327218e2ddb0dbc630d630de69e70 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod", - "version": "1.0.0-alpha28", + "version": "1.0.0-alpha29", "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 05428113faa1ccdbd8535480a25e7e4f048e0ffb..f1d50eade6a8db885e80579a5cf49e02ff091284 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.0.0-alpha.28", + "version": "1.0.0-alpha.29", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 10246fb8ee09d071934d3b3fd7da58d0f8a89ce2..6e48d5857916d258c63f7c280cd97e2241d96603 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.0.0-alpha.28", + "version": "1.0.0-alpha.29", "description": "Castopod 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",