From c6927de9e758ca31a7fa50b11ff7c9892b82944d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 23 Aug 2020 13:59:06 +0200 Subject: [PATCH] Bump version --- CHANGELOG | 2 +- composer.json | 2 +- src/Environment.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fef7a11a0..25ce100e4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# 1.43.2 (2020-XX-XX) +# 1.44.0 (2020-XX-XX) * Add support for ES2015 style object initialisation shortcut { a } is the same as { 'a': a } diff --git a/composer.json b/composer.json index d4e096dc5..b60b32a50 100644 --- a/composer.json +++ b/composer.json @@ -46,7 +46,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.43-dev" + "dev-master": "1.44-dev" } } } diff --git a/src/Environment.php b/src/Environment.php index 6dffa9462..330a9f3f8 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,11 +41,11 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '1.43.2-DEV'; - const VERSION_ID = 14302; + const VERSION = '1.44.0-DEV'; + const VERSION_ID = 14400; const MAJOR_VERSION = 1; - const MINOR_VERSION = 43; - const RELEASE_VERSION = 2; + const MINOR_VERSION = 44; + const RELEASE_VERSION = 0; const EXTRA_VERSION = 'DEV'; protected $charset;