From 9a9580fff965e67fcd3d0ac448ad784cf13dc362 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 26 Jul 2023 09:17:41 +0200 Subject: [PATCH] Bump version --- CHANGELOG | 4 ++++ src/Environment.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b6551155c2..d07217e017 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 3.7.1 (2023-XX-XX) + + * n/a + # 3.7.0 (2023-07-26) * Add support for the ...spread operator on arrays and hashes diff --git a/src/Environment.php b/src/Environment.php index 3c630c1b30..3a05712e50 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -40,12 +40,12 @@ */ class Environment { - public const VERSION = '3.7.0'; - public const VERSION_ID = 30700; + public const VERSION = '3.7.1-DEV'; + public const VERSION_ID = 30701; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 7; - public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 1; + public const EXTRA_VERSION = 'DEV'; private $charset; private $loader;