diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml index b58ae0a6b..4ee3aadcc 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-rc1 (+https://%kbin_domain%/agent)' + 'User-Agent': 'Mbin/1.7.1-rc2 (+https://%kbin_domain%/agent)' #esi: true #fragments: true diff --git a/src/Service/ProjectInfoService.php b/src/Service/ProjectInfoService.php index 10bf0683e..50103727a 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-rc1'; // TODO: Retrieve the version from git tags or getenv()? + private const VERSION = '1.7.1-rc2'; // 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';