From 93c4baf49d2c0abdde341febe72214be2a7e61f4 Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Sun, 4 Aug 2024 17:54:54 +0000 Subject: [PATCH] Bump version to v1.7.0 (#991) --- 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 64393b069..6a4cbd2b9 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-rc2 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.0 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index e455671c0..c7f83eef8 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-rc2'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.0'; // 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';