From a103bd7cff31c93953e741ee2f1e8e970400ca93 Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Mon, 19 Aug 2024 18:33:54 +0000 Subject: [PATCH] Bump Version to 1.7.1-rc4 (#1042) --- config/packages/framework.yaml | 2 +- src/Service/ProjectInfoService.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml index da0529816..178bf1e87 100644 --- a/config/packages/framework.yaml +++ b/config/packages/framework.yaml @@ -19,7 +19,7 @@ framework: http_client: default_options: headers: - 'User-Agent': 'Mbin/1.7.1-rc3 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.1-rc4 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index 700fc9014..40bb7bb74 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.1-rc3'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.1-rc4'; // TODO: Retrieve the version from git tags or getenv()? private const NAME = 'mbin'; private const USER_AGENT = 'Mbin'; private const REPOSITORY_URL = 'https://github.com/MbinOrg/mbin';