diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml index 762702af9..067a5f81a 100644 --- a/config/packages/framework.yaml +++ b/config/packages/framework.yaml @@ -31,7 +31,7 @@ framework: http_client: default_options: headers: - 'User-Agent': 'Mbin/1.7.3 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.4 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/docs/02-admin/01-installation/01-bare_metal.md b/docs/02-admin/01-installation/01-bare_metal.md index 065737663..f70d12551 100644 --- a/docs/02-admin/01-installation/01-bare_metal.md +++ b/docs/02-admin/01-installation/01-bare_metal.md @@ -127,7 +127,7 @@ git clone https://github.com/MbinOrg/mbin.git . > [!TIP] > You might now want to switch to the latest stable release tag instead of using the `main` branch. -> Try: `git checkout v1.7.3` (v1.7.3 might **not** be the latest version: [lookup the latest version](https://github.com/MbinOrg/mbin/releases)) +> Try: `git checkout v1.7.4` (v1.7.4 might **not** be the latest version: [lookup the latest version](https://github.com/MbinOrg/mbin/releases)) ### Create & configure media directory diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index 97439aa03..28eb47f92 100644 --- a/src/Service/ProjectInfoService.php +++ b/src/Service/ProjectInfoService.php @@ -10,7 +10,7 @@ class ProjectInfoService { // If updating version, please also update http client UA in [/config/packages/framework.yaml] - private const VERSION = '1.7.3'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.4'; // TODO: Retrieve the version from git tags or getenv()? private const NAME = 'mbin'; private const CANONICAL_NAME = 'Mbin'; private const REPOSITORY_URL = 'https://github.com/MbinOrg/mbin';