Set up 1.7 at master branch

This commit is contained in:
Kamil Kokot 2019-08-27 15:52:25 +02:00
parent 67e34950b6
commit 3bdaf6b8a9
No known key found for this signature in database
GPG key ID: 7BD76F7054D93C89
3 changed files with 11 additions and 3 deletions

1
CHANGELOG-1.7.md Normal file
View file

@ -0,0 +1 @@
# CHANGELOG FOR `1.7.X`

7
UPGRADE-1.7.md Normal file
View file

@ -0,0 +1,7 @@
# UPGRADE FROM `v1.6.X` TO `v1.7.0`
Require upgraded Sylius version using Composer:
```bash
composer require sylius/sylius:~1.7.0
```

View file

@ -31,10 +31,10 @@ use Webmozart\Assert\Assert;
class Kernel extends HttpKernel
{
public const VERSION = '1.6.0-DEV';
public const VERSION_ID = '10600';
public const VERSION = '1.7.0-DEV';
public const VERSION_ID = '10700';
public const MAJOR_VERSION = '1';
public const MINOR_VERSION = '6';
public const MINOR_VERSION = '7';
public const RELEASE_VERSION = '0';
public const EXTRA_VERSION = 'DEV';