From 27abb8074001004047e16a1556d35fe4740f5f51 Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Fri, 9 Aug 2024 14:55:15 +0000 Subject: [PATCH] Bump version to 1.7.1-rc1 (#1010) --- 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 6a4cbd2b9..1123ce187 100644 --- a/config/packages/framework.yaml +++ b/config/packages/framework.yaml @@ -17,7 +17,7 @@ framework: http_client: default_options: headers: - 'User-Agent': 'Mbin/1.7.0 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.1-rc1 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index c7f83eef8..10bf0683e 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.0'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.1-rc1'; // 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';