diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0b07438fdc63016028461e0354f6e5c5a4409c0d..836ba82406bcaadf62ba2fb8ac399a498dba573b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+# [1.0.0-beta.13](https://code.castopod.org/adaures/castopod/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2022-04-14)
+
+### Bug Fixes
+
+- **rss:** remove escaping for publisher and owner name
+  ([e2046e4](https://code.castopod.org/adaures/castopod/commit/e2046e4b116ecddb5e6d68487f666b95fd7f493c))
+- use UTC_TIMESTAMP() to get current utc date instead of NOW() in sql queries
+  ([853a6ba](https://code.castopod.org/adaures/castopod/commit/853a6ba9155b6687604304d59f03d0efb75a9f96))
+
+### Features
+
+- **i18n:** add Norwegian Nynorsk to supported locales
+  ([744340d](https://code.castopod.org/adaures/castopod/commit/744340df615bee38a54c4abbbb7f03d51b61a39d))
+
 # [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
diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index c9f5e8acb8ce65d850f6f8fa1b380978c652a45b..78cfa71d152eaf84b51f3dd4f62bbdf609cc9745 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.12');
+defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.13');
 
 /*
  | --------------------------------------------------------------------
diff --git a/composer.json b/composer.json
index a3872b95157556f43004c81ffe9a78de5bb12e2c..dc8b14371fa3dbc4a628c7d266efd9d0b6eabaae 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
 {
   "name": "podlibre/castopod-host",
-  "version": "1.0.0-beta12",
+  "version": "1.0.0-beta13",
   "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 9cce3bf06dad0ad7cefa3a51a6bd17c8d7433a47..a938ff32c3dcb171b9a714e03deac23c5dcc95a4 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-beta.12",
+  "version": "1.0.0-beta.13",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "castopod-host",
-      "version": "1.0.0-beta.12",
+      "version": "1.0.0-beta.13",
       "license": "AGPL-3.0-or-later",
       "dependencies": {
         "@amcharts/amcharts4": "^4.10.24",
diff --git a/package.json b/package.json
index 06ae5ed97d4bd636b307a4cbf7349d0b4ea77c7c..abcbb57aac6d6115ca706bad8aef7790d425af4d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "castopod-host",
-  "version": "1.0.0-beta.12",
+  "version": "1.0.0-beta.13",
   "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",