Skip to content

Commit

Permalink
Prepare 0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
GSadee committed Dec 4, 2024
1 parent 9e24237 commit 2654349
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.3" ]
symfony: [ "^5.4.21", "^6.4" ]
sylius: [ "~1.13.0", "~1.14.0" ]
php: ["8.3"]
symfony: ["^5.4", "^6.4"]
sylius: ["~1.13.0", "~1.14.0"]

include:
-
php: "8.1"
symfony: "^5.4.21"
symfony: "^5.4"
sylius: "~1.13.0"
-
php: "8.2"
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### UPGRADE FROM 0.1 TO 0.2
# UPGRADE FROM 0.1 TO 0.2

1. Support for Sylius 1.14 has been added, it is now the recommended Sylius version to use with GmvPlugin.

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
},
"extra": {
"symfony": {
"require": "^5.4 || ^6.4"
"require": "^6.4"
},
"branch-alias": {
"dev-master": "0.2-dev"
"dev-main": "0.2-dev"
}
},
"config": {
Expand Down
5 changes: 1 addition & 4 deletions tests/Application/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public function registerBundles(): array
new DoctrineBundle(),
new FlysystemBundle(),
new SyliusCalendarBundle(),
new SyliusStateMachineAbstractionBundle(),
new SyliusOrderBundle(),
new SyliusAddressingBundle(),
new SyliusAttributeBundle(),
Expand Down Expand Up @@ -118,10 +119,6 @@ public function registerBundles(): array
new FidryAliceDataFixturesBundle(),
];

if (SyliusCoreBundle::VERSION_ID >= '11300') {
$bundles[] = new SyliusStateMachineAbstractionBundle();
}

return $bundles;
}

Expand Down

0 comments on commit 2654349

Please sign in to comment.