From de55fecbea749644f122d5e3a4582dfad3c6dddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20K=C3=BChnel?= Date: Wed, 29 Sep 2021 11:12:11 +0200 Subject: [PATCH] Fix support for Sylius subversions --- .circleci/config.yml | 13 ++++++------- CHANGELOG.md | 6 ++++++ composer.json | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9aff85a..d687807 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,17 +37,16 @@ jobs: steps: - checkout - run: composer self-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/browser-kit:<< parameters.symfony_version >>" --no-interaction --no-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/debug-bundle:<< parameters.symfony_version >>" --no-interaction --no-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/dotenv:<< parameters.symfony_version >>" --no-interaction --no-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/intl:<< parameters.symfony_version >>" --no-interaction --no-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/web-profiler-bundle:<< parameters.symfony_version >>" --no-interaction --no-update - - run: COMPOSER_MEMORY_LIMIT=-1 composer require "sylius/sylius:<< parameters.sylius_version >>" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/browser-kit:<< parameters.symfony_version >>.*" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/debug-bundle:<< parameters.symfony_version >>.*" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/dotenv:<< parameters.symfony_version >>.*" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/intl:<< parameters.symfony_version >>.*" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "symfony/web-profiler-bundle:<< parameters.symfony_version >>.*" --no-interaction --no-update + - run: COMPOSER_MEMORY_LIMIT=-1 composer require "sylius/sylius:<< parameters.sylius_version >>.*" --no-interaction --no-update - run: COMPOSER_MEMORY_LIMIT=-1 composer update --no-interaction --prefer-dist - run: (cd tests/Application && bin/console doctrine:database:create --env=test -vvv) - run: (cd tests/Application && bin/console doctrine:schema:create --env=test -vvv) - run: (cd tests/Application && bin/console cache:warmup --env=test -vvv) - run: ./bin/ecs.sh - run: ./bin/phpstan.sh - - run: ./bin/symfony-lint.sh - run: ./bin/behat diff --git a/CHANGELOG.md b/CHANGELOG.md index 61cea17..11d561c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v1.2.1 (2021-09-29) + +#### Details + +- Fix support for Sylius subversions + ## v1.2.0 (2021-09-27) #### Details diff --git a/composer.json b/composer.json index eb53198..0832e7c 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^7.3|^8.0", - "sylius/sylius": "1.7|1.8|1.9|1.10" + "sylius/sylius": "1.7.*|1.8.*|1.9.*|1.10.*" }, "require-dev": { "behat/behat": "^3.6.1",