From 10cb211d934c24040656a2d0a8ea4fa2eff06b59 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 3 Apr 2019 10:28:54 +0200 Subject: [PATCH] bumped version to 1.39 --- CHANGELOG | 2 +- composer.json | 2 +- ext/twig/php_twig.h | 2 +- src/Environment.php | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1f7c883d4..6dcd2e51c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.38.5 (2019-XX-XX) +* 1.39.0 (2019-XX-XX) * n/a diff --git a/composer.json b/composer.json index 7eae2f075..84a08a71f 100644 --- a/composer.json +++ b/composer.json @@ -42,7 +42,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.38-dev" + "dev-master": "1.39-dev" } } } diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index 34f52b498..eb517d1fd 100644 --- a/ext/twig/php_twig.h +++ b/ext/twig/php_twig.h @@ -15,7 +15,7 @@ #ifndef PHP_TWIG_H #define PHP_TWIG_H -#define PHP_TWIG_VERSION "1.38.5-DEV" +#define PHP_TWIG_VERSION "1.39.0-DEV" #include "php.h" diff --git a/src/Environment.php b/src/Environment.php index e80fccb25..78863a04f 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,11 +41,11 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '1.38.5-DEV'; - const VERSION_ID = 13805; + const VERSION = '1.39.0-DEV'; + const VERSION_ID = 13900; const MAJOR_VERSION = 1; - const MINOR_VERSION = 38; - const RELEASE_VERSION = 5; + const MINOR_VERSION = 39; + const RELEASE_VERSION = 0; const EXTRA_VERSION = 'DEV'; protected $charset;