Skip to content

Commit

Permalink
Merge branch 'hotfix/2.11.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisCarden committed Nov 11, 2020
2 parents 99fa6b4 + 9563933 commit b8d18d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.11.3
v2.11.4
4 changes: 2 additions & 2 deletions src/Domain/Drupal/DrupalCoreVersionFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private function getNextRelease(): string {
// @todo This is hardcoded in order to prevent 9.0.x from becoming the "next the
// version" in the version set when Drupal 9 is released. This quirk of
// major version rollovers needs to be solved before Drupal 10 comes out.
return '8.9.0';
return $this->find('~9.1.0', 'alpha');
}

/**
Expand All @@ -204,7 +204,7 @@ private function getNextDevVersion(): string {
// "next the dev version" in the version set when Drupal 9 is released.
// This quirk of major version rollovers needs to be solved before Drupal
// 10 comes out.
return '8.9.x-dev';
return $this->find('~9.1.0', 'dev', 'dev');
}

/**
Expand Down

0 comments on commit b8d18d1

Please sign in to comment.