From 53b909de2ee2a8fc3714a21faf8f76418bca9854 Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Thu, 15 Aug 2024 21:09:55 +0200 Subject: [PATCH] Bump version to 1.7.1-rc3 (#1027) --- 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 4ee3aadcc..da0529816 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-rc2 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.1-rc3 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index 50103727a..700fc9014 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-rc2'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.1-rc3'; // 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';