From c4d351f9cc089564c6d36ca970a9d8314f41a8c5 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Wed, 9 Oct 2024 16:51:10 +0200 Subject: [PATCH] Bump to 1.7.2 release now (#1176) --- 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 862e9f3cd..054d9d483 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.1 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.2 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index e27ce0192..a44a7b062 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'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.2'; // 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';