Skip to content

Commit

Permalink
Merge branch 'release/4.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
sayan goswami committed May 16, 2023
2 parents c38258b + f147862 commit be11786
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v4.1.0
v4.2.0
5 changes: 4 additions & 1 deletion src/Domain/Fixture/FixtureCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,10 @@ private function fixDefaultDependencies(): void {

$additions = [];

if ($this->options->isDev()) {
if ($this->options->coreVersionParsedMatches('^9')) {
$additions[] = 'drush/drush:11.x';
}
elseif ($this->options->isDev()) {
// Install the dev version of Drush.
$additions[] = 'drush/drush:12.x-dev';
}
Expand Down

0 comments on commit be11786

Please sign in to comment.