diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f2b730..b6ae4dcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.13.2](https://code.castopod.org/adaures/castopod/compare/v1.13.1...v1.13.2) (2024-12-28) + +### Bug Fixes + +- add downloads_count to episodes table, computed every hour + ([5182d5d](https://code.castopod.org/adaures/castopod/commit/5182d5d67aa3c6f7906d4603efcec4b48f048991)) + ## [1.13.1](https://code.castopod.org/adaures/castopod/compare/v1.13.0...v1.13.1) (2024-12-05) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 1107fa80..6bdf7989 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.13.1'); +defined('CP_VERSION') || define('CP_VERSION', '1.13.2'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 67ce8774..0a50a03a 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.13.1", + "version": "1.13.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.json b/package.json index 8e67736d..8754993e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.13.1", + "version": "1.13.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",