diff --git a/composer.json b/composer.json index 1a3b1116b8..0f74fe1472 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "sylius/sylius", "type": "library", - "version": "v1.11.9", + "version": "v1.11.10-dev", "description": "E-Commerce platform for PHP, based on Symfony framework.", "homepage": "https://sylius.com", "license": "MIT", diff --git a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php index 59f65e8088..94b5a1d8ea 100644 --- a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php +++ b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php @@ -31,17 +31,17 @@ use Webmozart\Assert\Assert; class Kernel extends HttpKernel { - public const VERSION = '1.11.9'; + public const VERSION = '1.11.10-DEV'; - public const VERSION_ID = '11109'; + public const VERSION_ID = '11110'; public const MAJOR_VERSION = '1'; public const MINOR_VERSION = '11'; - public const RELEASE_VERSION = '9'; + public const RELEASE_VERSION = '10'; - public const EXTRA_VERSION = ''; + public const EXTRA_VERSION = 'DEV'; public function __construct(string $environment, bool $debug) {