From 0f04aa583fbfe6e22cc94385c0fac600b58a9239 Mon Sep 17 00:00:00 2001 From: debounced <35878315+nobodyatroot@users.noreply.github.com> Date: Fri, 31 May 2024 06:40:18 -0500 Subject: [PATCH] version bump in preparation for 1.6.0 release (#789) Co-authored-by: Melroy van den Berg --- 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 3a6d30d04..ea6f91c0c 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.5.3 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.6.0 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index be1614120..dbf2bbefc 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.5.3'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.6.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';