From 412cf146046c7b86ff8315d415a1bfd528d6a158 Mon Sep 17 00:00:00 2001
From: semantic-release-bot <semantic-release-bot@martynus.net>
Date: Thu, 3 Feb 2022 14:39:13 +0000
Subject: [PATCH] chore(release): 1.0.0-beta.6 [skip ci]

# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03)

### Bug Fixes

* **activitypub:** add conditions for possibly missing actor properties + add user-agent to requests ([8fbf948](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2))
* **activitypub:** add target actor id to like / announce activities to send directly to note's actor ([962dd30](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d))
* **activitypub:** add target_actor_id for create activity to broadcast post reply ([0128a21](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1))
* **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be sent in any order ([b7f285e](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc))
* **install:** set message block on forms to show error messages ([3a0a20d](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)), closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157)
* **markdown-editor:** remove unnecessary buttons for podcast and episode editors + add extensions ([9c4f60e](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e))
* **podcast-activity:** check if transcript and chapters are set before including them in audio ([5855a25](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f))
* **podcast:** use markdown description value for editor + set prose class to about description ([f304d97](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)), closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
---
 CHANGELOG.md             | 30 ++++++++++++++++++++++++++++++
 app/Config/Constants.php |  2 +-
 composer.json            |  2 +-
 package-lock.json        |  4 ++--
 package.json             |  2 +-
 5 files changed, 35 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 926d56deb5..372f7338f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,33 @@
+# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03)
+
+### Bug Fixes
+
+- **activitypub:** add conditions for possibly missing actor properties + add
+  user-agent to requests
+  ([8fbf948](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2))
+- **activitypub:** add target actor id to like / announce activities to send
+  directly to note's actor
+  ([962dd30](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d))
+- **activitypub:** add target_actor_id for create activity to broadcast post
+  reply
+  ([0128a21](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1))
+- **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be
+  sent in any order
+  ([b7f285e](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc))
+- **install:** set message block on forms to show error messages
+  ([3a0a20d](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)),
+  closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157)
+- **markdown-editor:** remove unnecessary buttons for podcast and episode
+  editors + add extensions
+  ([9c4f60e](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e))
+- **podcast-activity:** check if transcript and chapters are set before
+  including them in audio
+  ([5855a25](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f))
+- **podcast:** use markdown description value for editor + set prose class to
+  about description
+  ([f304d97](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)),
+  closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
+
 # [1.0.0-beta.5](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-01-31)
 
 ### Bug Fixes
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index 6cde165d8f..f9c2943a20 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.5');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.6');
 
 /*
  | --------------------------------------------------------------------
diff --git a/composer.json b/composer.json
index e3d8559082..e0b42513cc 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod-host",
-  "version": "1.0.0-beta5",
+  "version": "1.0.0-beta6",
   "type": "project",
   "description": "Castopod Host 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 e0930a00cd..ed73c45d87 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-beta.5",
+  "version": "1.0.0-beta.6",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "castopod-host",
-      "version": "1.0.0-beta.5",
+      "version": "1.0.0-beta.6",
       "license": "AGPL-3.0-or-later",
       "dependencies": {
         "@amcharts/amcharts4": "^4.10.23",
diff --git a/package.json b/package.json
index 95a580164d..1c017f6b64 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-beta.5",
+  "version": "1.0.0-beta.6",
   "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",
-- 
GitLab