Change application's version to v1.11.7-dev

This commit is contained in:
Mateusz Zalewski 2022-06-27 13:09:25 +02:00
parent 52a0107907
commit 8f477ca532
No known key found for this signature in database
GPG key ID: 9BECA0BB71612E52
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"name": "sylius/sylius",
"type": "library",
"version": "v1.11.6",
"version": "v1.11.7-dev",
"description": "E-Commerce platform for PHP, based on Symfony framework.",
"homepage": "https://sylius.com",
"license": "MIT",

View file

@ -31,17 +31,17 @@ use Webmozart\Assert\Assert;
class Kernel extends HttpKernel
{
public const VERSION = '1.11.6';
public const VERSION = '1.11.7-DEV';
public const VERSION_ID = '11106';
public const VERSION_ID = '11107';
public const MAJOR_VERSION = '1';
public const MINOR_VERSION = '11';
public const RELEASE_VERSION = '6';
public const RELEASE_VERSION = '7';
public const EXTRA_VERSION = '';
public const EXTRA_VERSION = 'DEV';
public function __construct(string $environment, bool $debug)
{