Adjust Sylius versions for 2.1 (#18123)

| Q               | A
|-----------------|-----
| Branch?         | 2.1
| Bug fix?        | no
| New feature?    | no
| BC breaks?      | no
| Deprecations? | no<!-- don't forget to update the UPGRADE-*.md file
-->
| Related tickets | 
| License         | MIT

<!--
 - Bug fixes must be submitted against the 1.14 or 2.0 branch
 - Features and deprecations must be submitted against the 2.1 branch
 - Make sure that the correct base branch is set

To be sure you are not breaking any Backward Compatibilities, check the
documentation:

https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html
-->
This commit is contained in:
Jan Góralski 2025-06-04 12:15:45 +02:00 committed by GitHub
commit ee00ff3e72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

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

View file

@ -40,15 +40,15 @@ use Symfony\Component\DependencyInjection\ContainerBuilder;
final class SyliusCoreBundle extends AbstractResourceBundle
{
public const VERSION = '2.0.9-DEV';
public const VERSION = '2.1.0-DEV';
public const VERSION_ID = '20009';
public const VERSION_ID = '20100';
public const MAJOR_VERSION = '2';
public const MINOR_VERSION = '0';
public const MINOR_VERSION = '1';
public const RELEASE_VERSION = '9';
public const RELEASE_VERSION = '0';
public const EXTRA_VERSION = 'DEV';